1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp

15 lines
154 B
C++
Raw Normal View History

2004-11-06 23:29:57 +01:00
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
// Testcase from Bug 291
2004-03-16 06:18:24 +01:00
struct X {
~X();
};
void foo() {
X v;
TryAgain:
goto TryAgain;
}