summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/crash2.C
blob: 3d62d04eb6f4cff98101d690efadd991a1d11bb9 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do assemble  }

struct A {
  int rep;
  static const A a(0); // { dg-error "" } initialization
  static const A b = 3; // { dg-error "" } initialization
  static const A& c = 2; // { dg-error "" } initialization
  A(int x) : rep(x) {}
};