v06-l3-correctCode

(1/2)

What should we do so the Container class below is well implemented ?

class Component {};

class Container {
    Component& c;
public:
    Container(): c(*(new Component())) {}
}

???