install.texi (gcn): Suggest newer commit for Newlib
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend22.C
blob3dcfa0e61dc14c1769fd31de1ffa19ee3715f06a
1 // { dg-do assemble  }
3 template <class T = int>
4 struct S
6   template <class U>
7   friend class S;
8 };
10 template struct S<int>;