brintos

brintos / llvm-project-archived public Read only

0
0
Text · 90 B · 7b69f48 Raw
9 lines · cpp
1struct RAII {2  int i = 0;3  RAII() { i++; }4  ~RAII() { i--; }5};6void f() {7  RAII();8}9