aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend10.C
blob: bff432b5620bd3dde5a18e5c1f6c540129c2551a (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
26
27
28
29
template <class T>
void f(T);

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

public:

  void g()
    {
      f(3.0);
    }

  int i;
};

int main()
{
  f(7);
  C<double> c;
  c.g();
}