1 struct S {
2   int a;
3 };
4 
5 struct Bar {
barBar6   void bar(int _a) {
7     S s = { _a };
8   };
9 };
10