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

template <class T>
struct S1 {
};

template <>
struct S1<int> {};

struct S2 {
  friend class S1<int>;
};