2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend42.C
blob3c353e53d81ed87e2181fa4a6d91242680833872
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class T>
5 struct S {
6   template <class U>
7   friend struct S2;
8 };
10 template struct S<int>;