aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend22.C
blob: ed459d71fe2fdaf27f59e3a3678d33d87ead7b09 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

template <class T = int>
struct S
{
  template <class U>
  friend class S;
};

template struct S<int>;