blob: 4a7715d53eb95f99d68804a76f87cfb6a985b55b [file] [log] [blame]
// Testcase from Bug 291
struct X {
~X();
};
void foo() {
X v;
TryAgain:
goto TryAgain;
}