]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/FrontendC++/2003-08-24-Cleanup.cpp
Update LLVM to r89205.
[FreeBSD/FreeBSD.git] / test / FrontendC++ / 2003-08-24-Cleanup.cpp
1 // RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
2
3 struct S { ~S(); };
4
5 int mightthrow();
6
7 int test() {
8   S s;
9   mightthrow();
10 }