]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/crash54.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash54.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash54.C b/gcc/testsuite/g++.old-deja/g++.pt/crash54.C
deleted file mode 100644 (file)
index da66d75..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Build don't link:
-// Origin: Mark Mitchell <mark@codesourcery.com>
-
-template <class T>
-int g (T);
-
-int j = g (3);
-
-template <class T>
-inline T f (T)
-{
-  return 2;
-}
-
-template <class T>
-struct S
-{
-  static const int i;
-};
-
-template <class T>
-const int S<T>::i = f (3);
-
-template <class T>
-int g (T)
-{
-  return S<double>::i;
-}
-