OSDN Git Service

* lib/g++-dg.exp (g++-dg-test): Add "repo" option.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / tempcons.C
1 // { dg-do assemble  }
2 // Bug: member initializers are allowed where they shouldn't be.
3
4 template <class T>
5 struct A {
6   int i;
7   Blarg () : i(0) { }           // { dg-error "" } 
8 };