brintos

brintos / llvm-project-archived public Read only

0
0
Text · 61 B · 5ca3ad4 Raw
9 lines · cpp
1class S {2  int a[10];3};4 5void f() {6  S s;7  S copy = s;8}9