1 struct Foo 2 { 3 double x; 4 int y; FooFoo5 Foo() : x(3.1415), y(1234) {} 6 }; 7 main()8 int main() { 9 Foo f; 10 return 0; // break here 11 } 12