2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / tempcons.C
bloba9974dbf779aaef18b2b2c4f8b102d5c49d49687
1 // { dg-do assemble  }
2 // Bug: member initializers are allowed where they shouldn't be.
4 template <class T>
5 struct A {
6   int i;
7   Blarg () : i(0) { }           // { dg-error "" } 
8 };