// { dg-do compile } // Origin: Jiangbin Zhao // PR c++/12369: ICE for specialization of member function template // as friend in ordinary class. struct A { template T* make() { return new T(); } }; struct B { friend B* A::make< B >(); // (1) };