summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-08-24-Cleanup.cpp
blob: 9f20ad6b714ac1dfbcf1dd06b3a55508e84cb695 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind

struct S { ~S(); };

int mightthrow();

int test() {
  S s;
  mightthrow();
}