aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit65.C
blob: 20cda6384c89571120abb41262702c103debb093 (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
// { dg-do run  }
extern "C" void abort ();

template <class T> void f ()
{
  abort ();
}

template <> void f<char> ()
{
  abort ();
}

template <class T> void f (int)
{
  abort ();
}

template <> void f<char> (int)
{
}

template <class T> class C
{
  friend void f<char> (int);
  public:
    void ff () { f<char> (0); }
};

int main ()
{
  C<int> c;
  c.ff();
}