Adjusted for the new TestRunner test class. This replaces %gcc and %g++ with
[oota-llvm.git] / test / C++Frontend / 2003-08-24-Cleanup.cpp.tr
1 // RUN: %gxx -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 }