brintos

brintos / llvm-project-archived public Read only

0
0
Text · 124 B · 3c4cb41 Raw
6 lines · cpp
1// This file simply declares a dynamically initialized var by the name of 'y'.2int initY() {3  return 5;4}5int y = initY();6