Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / friend24.C
blob5a4116fd47bc6dedc4f9aab9469b552e779dee9d
1 // { dg-do assemble  }
3 template <class T>
4 struct S
6   template <class U = T>
7   friend class S;
9   void f(T);
12 template struct S<int>;
14 void g()
16   S<> s;
17   s.f(3);