]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/instan1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / instan1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/instan1.C b/gcc/testsuite/g++.old-deja/g++.other/instan1.C
deleted file mode 100644 (file)
index 87c966d..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Build don't run:
-// Origin: Mark Mitchell <mark@codesourcery.com>
-// Special g++ Options: -fno-implicit-templates
-
-template <class T>
-struct U {
-  static int j;
-};
-
-template <class T>
-struct S {
-  static const int i = 7;
-};
-
-template <class T>
-const int S<T>::i;
-
-template <class T>
-int U<T>::j = S<T>::i + 5;
-
-template int U<double>::j;
-
-int main () {
-}