You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
210 B
28 lines
210 B
4 months ago
|
struct M;
|
||
|
|
||
|
struct S {
|
||
|
int x;
|
||
|
M * m;
|
||
|
int y;
|
||
|
};
|
||
|
|
||
|
struct M {
|
||
|
int a;
|
||
|
S * s;
|
||
|
};
|
||
|
|
||
|
struct T {
|
||
|
S s;
|
||
|
int a;
|
||
|
};
|
||
|
|
||
|
struct U {
|
||
|
struct {
|
||
|
S s;
|
||
|
};
|
||
|
int r;
|
||
|
};
|
||
|
|
||
|
void reg1(S*, T*, T*) { }
|
||
|
void reg2(U*) { }
|