OSDN Git Service

PR c++/30849
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / friend1.C
1 namespace N {
2   template <typename T>
3   static void f ();
4
5   struct S {
6     friend void N::f<int> ();
7     static void f (int);
8   };
9 }