aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
blob: 4a7715d53eb95f99d68804a76f87cfb6a985b55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Testcase from Bug 291

struct X {
  ~X();
};

void foo() {
  X v;
  
TryAgain: 
  goto TryAgain;
}