Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit63.C
blob46751a69de984d96651b982e1d953d2b529fa434
1 // { dg-do run  }
2 extern "C" void abort ();
4 template <class T> void f ()
9 template <class T> class C
11   friend void f<T> ();
12   public:
13     void ff () { f<T> (); }
16 int main ()
18   C<int> c;
19   c.ff();