blob: f071c3c0e80c9b5f232b16ceff6d9fd645cd26cf [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
void foo();
void bar() {
struct local {
~local() { foo(); }
} local_obj;
foo();
}