summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/label13.C
blob: d932a9a50514c341d0de59296294277f7086d12c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// PR c++/41090
// { dg-do run }
// { dg-options "" }

int i;
struct C
{
  C();
};

C::C()	// { dg-bogus "can never be copied" "" { xfail { { *-apple-darwin* alpha*-dec-osf* } || { hppa*-*-hpux* && { ! hppa*64*-*-* } } } } }
{
  static void *labelref = &&label;
  goto *labelref;
 label: i = 1;
}

int main()
{
  C c;
  return (i != 1);
}