]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/template16.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / template16.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/template16.C b/gcc/testsuite/g++.old-deja/g++.ns/template16.C
deleted file mode 100644 (file)
index 760be46..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that pushing into a namespace for a definition doesn't affect
-// template instantiations.
-
-// Build don't link:
-
-namespace N {
-  template <class T> void f () { }
-  template <class T> struct A { friend void f<T>(); };
-};
-
-namespace M {
-  struct B;
-};
-
-struct M::B: public N::A<int> { };