semantics.c (finish_pseudo_destructor_expr): Allow differing cv-qualification between...
[platform/upstream/gcc.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 };