brintos

brintos / llvm-project-archived public Read only

0
0
Text · 102 B · fa7c350 Raw
9 lines · cpp
1struct NoCtor {2  NoCtor();3  static int i;4};5 6int NoCtor::i = 15;7 8int main() { return NoCtor::i; }9