blob: 2f48847da4499bad1d51c54999595635fc244318 [file] [log] [blame]
struct S2 {
int m;
};
struct S1 {
S2 m;
};
void f() {
S1 v = (S1)0;
return;
}