brintos

brintos / llvm-project-archived public Read only

0
0
Text · 119 B · 2b83b5d Raw
10 lines · cpp
1struct Foo {2  int i;3};4 5struct S {6  int int_member = 3;7  float float_member = 3.0f;8  Foo class_member = Foo();9};10