Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / 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);