brintos

brintos / llvm-project-archived public Read only

0
0
Text · 112 B · f4ad1ad Raw
12 lines · cpp
1void foo(int x) {}2 3struct FooBar {4  int i;5};6 7int main() {8  FooBar f;9  foo(1);10  return 0; // Break here11}12