struct foo { int a; int b; }; struct foo f = { .a = 1, .b = 2, }; int bar() { int x; x = 1; int y; y = 2; for (int i = 0; i < 5; i++) ; return 0; }