]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/template29.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template29.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/template29.C b/gcc/testsuite/g++.old-deja/g++.jason/template29.C
deleted file mode 100644 (file)
index d4212e2..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// PRMS Id: 9500
-// Build don't link:
-
-template <int S> 
-class base 
-   { 
-public: 
-   inline base(); 
-   }; 
-template <class T> 
-class derived : public base<sizeof(T)> 
-   { 
-public: 
-   inline derived(); 
-   }; 
-template <class T> 
-inline derived<T>::derived() : base<sizeof(T)>(){}