1struct Bar {2 void bar(int _a, bool _b) {3 {4 struct S { int a; };5 S s = { _a };6 }7 {8 struct S { bool b; };9 S t = { _b };10 }11 };12};13