// Testcase from Bug 291

llvm-svn: 12428
This commit is contained in:
Chris Lattner 2004-03-16 05:14:47 +00:00
parent 8ad948ddbd
commit cf2608c0e9
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// Testcase from Bug 291
struct X {
~X();
};
void foo() {
X v;
TryAgain:
goto TryAgain;
}