blob: ab0d1a0d11cd79c893ff8deba4089a84e50293df [file] [log] [blame]
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
struct S { ~S(); };
int mightthrow();
int test() {
S s;
mightthrow();
}