]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp35.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp35.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp35.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp35.C
deleted file mode 100644 (file)
index 7603d94..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// GROUPS passed templates membertemplates
-template <class T>
-struct S
-{
-  S(const S& s) {}
-
-  template <class U>
-  S(S<U>& s)
-  {
-    S<U> s2(s);
-  }
-};
-
-
-extern S<int>& si;
-
-void foo()
-{
-  S<char*> sc(si);
-}