hanchenye-llvm-project/llvm/test/C++Frontend/2003-08-24-Cleanup.cpp.tr

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();
}