This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / template / lookup5.C
blob022202a7158c3d4e35fc3bc060957714d1a2cc94
1 // PR c++/13925
3 namespace N {
4   template <class T> void f(T);
6   namespace M {
7     class A {
8       friend void f<int>(int);
9     };
10   }
12   template <class T> void f(T) {}
13   template <> void f<int>(int )
14   { 
15     f<long>(0);
16   }