i386: Allow all register_operand SUBREGs in x86_ternlog_idx.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit64.C
blob63a05f66da880860e7fa54a98aa81d1d226702f8
1 // { dg-do run  }
2 extern "C" void abort ();
4 template <class T> void f ()
6   abort ();
9 template <> void f<char> ()
13 template <class T> class C
15   friend void f<char> ();
16   public:
17     void ff () { f<char> (); }
20 int main ()
22   C<int> c;
23   c.ff();