hanchenye-llvm-project/llvm/test/C++Frontend/2004-03-15-CleanupsAndGotos...

15 lines
154 B
C++
Raw Normal View History

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