aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/eh/goto2.C
blob: de06d50b6e33b5a6145dc02d9c2df4ac58d5add4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/32080

void f()
try
  {
    goto l2;       // { dg-error "from here" }
  l1: ;            // { dg-error "jump to label 'l1'" }
  } catch (...)
  {
  l2: ;            // { dg-error "jump to label 'l2'|enters catch block" }
    goto l1;       // { dg-error "from here|enters try block" }
  }