summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/jump1.C
blob: d5dcebca2fa38fc95fdf6c74808b5db62da52d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do run  }
// { dg-options "-fpermissive -w" }
// Test that we can jump over the declaration of a non-POD object.
// Contributed by Jason Merrill <jason@cygnus.com>

struct A { };
union U {
  void (A::*p)();
};

int main()
{
  goto foo;
  U u;
 foo:
  return 0;
}