summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend42.C
blob: dcbfd462bacabf8360004566a68b7b107328c7d8 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>

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

template struct S<int>;