brintos

brintos / llvm-project-archived public Read only

0
0
Text · 237 B · 0ce5359 Raw
10 lines · cpp
1// Linker initialized:2int getAB();3int ab = getAB();4// Function local statics:5int countCalls();6int one = countCalls();7// Trivial constructor, non-trivial destructor:8int getStructWithDtorValue();9int val = getStructWithDtorValue();10