aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend1.C
blob: ba642ba5c5ae40b15a5d8ce9b23e2fefb8d08db3 (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
template <class T>
void f(T);

class C
{
  template <class T>
  friend void f(T);

  int i;
};


template <class T>
void f(T)
{
  C c;
  c.i = 3;
}


int main()
{
  f(7);
}