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.
|
struct M;
|
|
|
|
struct S {
|
|
int x;
|
|
M * m;
|
|
};
|
|
|
|
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*) { }
|