brintos

brintos / llvm-project-archived public Read only

0
0
Text · 182 B · 1bfd54c Raw
12 lines · c
1namespace a {2extern int kGlobalInt;3extern const char *const kGlobalStr;4}5 6int kEvilInt = 2;7 8inline void f1() {9  int kGlobalInt = 3;10  const char *const kGlobalStr = "Hello2";11}12