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

template <class T> void f ()
{
}


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

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