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