]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp97.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp97.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp97.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp97.C
deleted file mode 100644 (file)
index 511beae..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Origin: Mark Mitchell <mark@codesourcery.com>
-
-template <class T> struct A {
-  template <class U> int f(U) { return 1; }
-};
-
-template <>
-template <class U>
-int A<int>::f(U) { return 0; }
-
-A<int> a;
-
-int main ()
-{
-  return a.f (3);
-}