b27aef40cbd96dd2694c196188d2f7e4843dc8f8
[oota-llvm.git] / test / C++Frontend / 2003-08-24-Cleanup.cpp.tr
1 // RUN: llvmg++ -xc++ %s -c -o - | llvm-dis | grep unwind
2
3 struct S { ~S(); };
4
5 int mightthrow();
6
7 int test() {
8   S s;
9   mightthrow();
10 }