#includeusing namespace std;class X {public:int x;public:X(int x){cout <x = x << endl;}X(X&t){x = t.x;cout << t.x << endl;}void fun(X);};
少写了<