aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/crash2.C
blob: 93e0a6e3bccc6cca839c8fbb14918ec96130622a (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:

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