1 2 3 4 5 6 7 8 9 10 11
// PR c++/26912 struct Foo { template<class T> int func() const; }; class Bar { friend int Foo::func<int>() const; };