brintos

brintos / llvm-project-archived public Read only

0
0
Text · 105 B · 8c67a34 Raw
13 lines · cpp
1extern "C" int x;2 3namespace {4 5struct Init {6public:7  Init() { x = 1; }8};9 10Init SetX;11 12} // namespace13