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