2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend20.C
blob496d52f5e7faefc58d3738313cceefab922e6e85
1 template <class T>
2 struct A
4   friend void bar(A<T> a) {}
5 };
7 void bar(A<int>);
9 int main()
11   A<int> a;
13   bar(a);