blob: fd1c6ad4c2a538de2f89dd9effef1660a0c5cbdc [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3void foo();
4
5void bar() {
6 struct local {
7 ~local() { foo(); }
8 } local_obj;
9
10 foo();
11}
12