blob: 649bf8b77e12b149ee88da50f11032c24ef6b4e3 [file] [log] [blame]
// PR c++/44118
template < typename > struct S;
template < typename > struct S < int >; // { dg-error "template" }
template < typename > struct S < int >
{
void f ();
};
void
f ()
{
S < int >::f (); // { dg-error "cannot call" }
}