// PR c++/61327 // { dg-do compile { target c++11 } } template struct A; template struct A { template void f(U* u) { u->T::g(); } }; struct B { protected: void g() { } }; struct C : B { template friend struct A; }; int main() { C c; A a; a.f(&c); }