]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/explicit12.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit12.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit12.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit12.C
deleted file mode 100644 (file)
index 820da3d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't run:
-// Special g++ Options: -ansi -pedantic-errors -w
-// GROUPS passed templates
-template <class U>
-struct S 
-{
-  template <class T>
-  void foo(T t);
-};
-
-
-template <>
-template <>
-void S<char*>::foo<int>(int) {}
-
-int main()
-{
-  S<char*> s;
-  s.template foo<int>(3.0);
-}