brintos

brintos / llvm-project-archived public Read only

0
0
Text · 170 B · 96cd2f2 Raw
13 lines · cpp
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