]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/explicit31.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit31.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit31.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit31.C
deleted file mode 100644 (file)
index 900ba11..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Build don't run:
-// GROUPS passed templates
-// Special g++ Options: -ansi -pedantic-errors -w
-template <class T>
-struct S
-{
-  template <class U>
-  static double foo(U u) { return (double) u; }
-};
-
-
-int main()
-{
-  double d = S<int>::template foo<char>(3.3);
-
-  return (d >= 3.1);
-}