cp/
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / friend20.C
blobecdc763ca06e84543e2d95b1ddeba9ebac81c1f4
1 // PR c++/80830
3 template <int> class a;
4 class b
6   friend int operator>> (int, b);
7 };
8 template <int c> int &operator>> (int &, a<c> &);
9 template <int = 3> class a
11   friend int &operator>><> (int &, a &);
12   a<>
13   d ()
14   {
15   }