Jump to

v06-l3-correctCode

(random out of 2)

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

class Component {};

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

???