class A { A(const A &obj); private: int dato; }
A(const A &obj) { dato = obj.dato; // QUESTO NON SI PUO FARE }