blob: 606a2f27d6544f4df564c1f8d03a027f8213e253 [file] [log] [blame]
void foo();
void bar() {
struct local {
~local() { foo(); }
} local_obj;
foo();
}