aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/memfriend4.C
blob: 5c006fe84f31bc1b8f5e87b4075106a6e532d9d3 (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
62
63
// { dg-do compile }

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

// Member function of class template as friend

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

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

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

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

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

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

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

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

int d2 = 0;

int main()
{
  A<int> a1;
  a1.f<0>();
  A<int *> a2;
  a2.f<&d2>();
  A<char> a3;
  a3.f<'a'>();
  a3.f<'b'>();
}