aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/tempcons.C
blob: 77cc732090e619ca1d815a13a97b52509ee32ba4 (plain)
1
2
3
4
5
6
7
8
// Bug: member initializers are allowed where they shouldn't be.
// Build don't link:

template <class T>
struct A {
  int i;
  Blarg () : i(0) { }		// ERROR - 
};