aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/memfriend2.C
blob: 364ad7d78645eb3d8fe88f045f34daa1f10c33e5 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>

// Member function template of class template as friend

template <class T> struct A
{
  template <class U> void f();
};

class C {
  int i;
  template <class T> template <class U> friend void A<T>::f();
};

template <class T> struct A<T*>
{
  template <class U> void f();
};

template <> struct A<char>
{
  template <class U> void f();
};

template <class T> template <class U> void A<T>::f()
{
  C c;
  c.i = 0;
}

template <class T> template <class U> void A<T*>::f()
{
  C c;
  c.i = 0;
}

template <class U> void A<char>::f()
{
  C c;
  c.i = 0;
}

template <> void A<char>::f<int>()
{
  C c;
  c.i = 0;
}

int main()
{
  A<int> a1;
  a1.f<char>();
  A<int *> a2;
  a2.f<char>();
  A<char> a3;
  a3.f<char>();
  a3.f<int>();
}