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

13 lines
102 B
C++

// Testcase from Bug 291
struct X {
~X();
};
void foo() {
X v;
TryAgain:
goto TryAgain;
}