OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / friend20.C
1 template <class T>
2 struct A
3 {
4   friend void bar(A<T> a) {}
5 };
6
7 void bar(A<int>);
8
9 int main()
10 {
11   A<int> a;
12
13   bar(a);
14 }
15