S.cpp 90 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 struct RAII { int i = 0; RAII() { i++; } ~RAII() { i--; } }; void f() { RAII(); }