summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-08-24-Cleanup.cpp
blob: ab0d1a0d11cd79c893ff8deba4089a84e50293df (plain)
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();
}