aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/friend9.C
blob: 5eb52b7ef9a7459a1c89b67c750c57feaa3db560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do run  }
template <class U>
class C
{
  template <class T>
  friend void f(T);

  int i;
};


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


int main()
{
  f(7);
}