blob: fd1c6ad4c2a538de2f89dd9effef1660a0c5cbdc [file] [log] [blame]
Tanya Lattnerd9a3ceb2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner9ca74f12003-08-20 20:24:09 +00003void foo();
4
5void bar() {
6 struct local {
7 ~local() { foo(); }
8 } local_obj;
9
Chris Lattner820153f2003-08-20 20:36:09 +000010 foo();
Chris Lattner9ca74f12003-08-20 20:24:09 +000011}
12