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