Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / friend1.C
blobf19dc9c628b9aeff5e195cea2ce811d218572892
1 namespace N {
2   template <typename T>
3   static void f ();
5   struct S {
6     friend void N::f<int> ();
7     static void f (int);
8   };