11 lines
73 B
C++
11 lines
73 B
C++
class Y {
|
|
int M;
|
|
};
|
|
|
|
class X {
|
|
int N, M;
|
|
|
|
public:
|
|
operator Y();
|
|
};
|