// Testcase from Bug 291
[oota-llvm.git] / test / C++Frontend / 2004-03-15-CleanupsAndGotos.cpp
1 // Testcase from Bug 291
2 struct X {
3   ~X();
4 };
5
6 void foo() {
7   X v;
8   
9 TryAgain: 
10   goto TryAgain;
11 }