1 2 3 4 5 6 7 8 9 10
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind struct S { ~S(); }; int mightthrow(); int test() { S s; mightthrow(); }