aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit64.C
blob: 2208b30eae737ad134934f44280592734fe6dc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
extern "C" void abort ();

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

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

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

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