OSDN Git Service

* g++.dg/template/spec10.C: Set exit value to zero on success. Fix
[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