brintos

brintos / llvm-project-archived public Read only

0
0
Text · 78 B · 7250fa4 Raw
10 lines · cpp
1static int Static()2{3  return 1;4}5 6int CallStaticA()7{8  return Static();9}10