llvm-mirror/test/C++Frontend/2003-08-24-Cleanup.cpp.tr
2007-01-17 07:59:14 +00:00

11 lines
138 B
Plaintext

// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
struct S { ~S(); };
int mightthrow();
int test() {
S s;
mightthrow();
}