blob: 52c6474d7a1b28de6a52d640b2c4b2317c56d2c3 [file] [log] [blame]
struct Foo {
int real_child = 47;
};
struct HasFoo {
Foo f;
};
int main() {
Foo foo;
HasFoo has_foo;
return 0; // break here
}