1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 00:12:50 +01:00
llvm-mirror/test/FrontendC++/2003-08-24-Cleanup.cpp

11 lines
138 B
C++
Raw Normal View History

// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
2003-08-24 22:23:21 +02:00
struct S { ~S(); };
int mightthrow();
int test() {
S s;
mightthrow();
}