brintos

brintos / llvm-project-archived public Read only

0
0
Text · 84 B · 62422af Raw
10 lines · cpp
1struct S {2  int a;3};4 5struct Bar {6  void bar(int _a) {7    S s = { _a };8  };9};10