aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/friend31.C
blob: 071025df4e53d996997a106c8391525d17ac4b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble  }

template <class T>
struct S1 {
};

template <>
struct S1<int> {};

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