aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend3.C
blob: 74d0e06699c051df531d7cc298fa137a7e4dfe62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link:

template <class T>
void f(T);

class C
{
  friend void f<>(double);

  int i; // ERROR - private
};


template <class T>
void f(T)
{
  C c;
  c.i = 3; // ERROR - f<double> is a friend, this is f<int>.
}


int main()
{
  f(7);
}