// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>// { dg-do compile }template<typenameT>structBase{Base(int){}};template<typenameT>structDerived:Base<T>{Derived();};template<typenameT>Derived<T>::Derived():Base(4){}// { dg-error "have any field" "" }