1*3068d277SPavel Labath struct Foo { 2*3068d277SPavel Labath int real_child = 47; 3*3068d277SPavel Labath }; 4927926b8SPavel Labath 5*3068d277SPavel Labath struct HasFoo { 6*3068d277SPavel Labath Foo f; 7927926b8SPavel Labath }; 8927926b8SPavel Labath main()9927926b8SPavel Labathint main() { 10*3068d277SPavel Labath Foo foo; 11*3068d277SPavel Labath HasFoo has_foo; 12927926b8SPavel Labath return 0; // break here 13927926b8SPavel Labath } 14