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

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

  int i;
};


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


int main()
{
  f(7);
}