]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memclass7.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass7.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memclass7.C b/gcc/testsuite/g++.old-deja/g++.pt/memclass7.C
deleted file mode 100644 (file)
index d356a4e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Special g++ Options: -ansi -pedantic-errors -w
-struct S 
-{
-  template <class U>
-  struct Y {
-    template <class T>
-    void foo(T t);
-  };
-};
-
-template <>
-template <>
-void S::Y<char>::foo<int>(int i) { }
-
-int main()
-{
-  S::Y<char> s;
-  s.template foo<int>(3.0);
-}