blob: 7b69f48f681e34a69649a69dd385d66bed4187e5 [file] [log] [blame]
struct RAII {
int i = 0;
RAII() { i++; }
~RAII() { i--; }
};
void f() {
RAII();
}