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