aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/friend6.C
blob: 8bb5e022440523b1e6afd2b03b00c8b641c38968 (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
// { dg-do run  }
template <class T>
void f(T);

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

public:

  void g()
    {
      f(3.0);
    }

  int i;
};

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