]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/explicit59.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit59.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit59.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit59.C
deleted file mode 100644 (file)
index 847a80a..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-extern "C" void abort ();
-
-template <class T> void f ();
-template <class T> void g ()
-{
-  abort ();
-}
-
-template <> void g<char> ()
-{
-  abort ();
-}
-
-template <class T> class C
-{
-  public:
-    void ff () { f<T> (); }
-    void gg () { g<T> (); }
-    template <class U> void f () {}
-    template <class U> void g () {}
-};
-
-template <class T> void f ()
-{
-  abort ();
-}
-
-template <> void f<char> ()
-{
-  abort ();
-}
-
-int main ()
-{
-  C<int> c;
-  c.ff();
-  c.gg();
-  C<char> d;
-  d.ff();
-  d.gg();
-}