llvm-6502/test/C++Frontend/2003-08-24-Cleanup.cpp
2008-05-21 14:48:24 +00:00

11 lines
138 B
C++

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