OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / lookup7.C
1 class S;
2
3 template<class T>
4 int f(T, S);
5
6 class S {
7   template<class T>
8   friend int f(T t, S) { t; return 0; }
9 };