// { dg-do assemble } // PRMS Id: 4679 // Bug: redeclaration of templates erases the definition. template class Foo { public: void h(); }; template class Foo; void g() { Foo f; }