aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/init4.C
blob: f8246d68f0ed37ea01c20054ba8740d8aacb0ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-options "-std=c++98 -pedantic-errors" }
// { dg-do assemble  }

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

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