brintos

brintos / llvm-project-archived public Read only

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