blob: b27aef40cbd96dd2694c196188d2f7e4843dc8f8 [file] [log] [blame]
Chris Lattnera61b19b2003-09-29 22:17:12 +00001// RUN: llvmg++ -xc++ %s -c -o - | llvm-dis | grep unwind
Chris Lattnercf0e11e2003-08-24 20:23:21 +00002
3struct S { ~S(); };
4
5int mightthrow();
6
7int test() {
8 S s;
9 mightthrow();
10}