OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / friend39.C
1 // PR c++/8355
2
3 namespace Foo { template <typename T> void foo();}
4 struct Bar
5 {
6   friend void Foo::foo<int>();
7 };