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

class error {
public:
  error(int) {}
};

class foo {
  const error x = 1; // ERROR - initialization of non-static data member
};