2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / tredecl3.C
blob35c34d7e8da28eed88fdf86cfc459d5860790c1a
1 // { dg-do assemble  }
2 // PRMS Id: 4679
3 // Bug: redeclaration of templates erases the definition.
5 template <class T> class Foo { public: void h(); };
6 template <class T> class Foo;
8 void g()
10   Foo<int> f;