brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · c4e15db Raw
13 lines · cpp
1int d_init()2{3    return 456;4}5 6int d_global = d_init();7 8int9d_function ()10{ // Find this line number within d_dunction().11    return 12345;12}13