summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit63.C
blob: 46751a69de984d96651b982e1d953d2b529fa434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do run  }
extern "C" void abort ();

template <class T> void f ()
{
}


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

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