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

template <class T> struct A;

struct B
{
  template <class U>
  friend class A<U>;  // ERROR - does not specialize any args
};

struct C
{
  template <class U>
  friend class A<U*>; // ERROR - partial specialization
};