brintos

brintos / llvm-project-archived public Read only

0
0
Text · 95 B · 41618bd Raw
11 lines · cpp
1struct foo {2  int x;3  bool y;4};5 6void dwo_error_foo() {7  foo f;8  f.x = 1;9  f.y = true;10}11