]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/type1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / type1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/type1.C b/gcc/testsuite/g++.old-deja/g++.ns/type1.C
deleted file mode 100644 (file)
index 21398f9..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Test that using an elaborated-type-specifier in a namespace to refer
-// to a class outside the namespace does not cause its name to be considered
-// declared in the namespace.
-
-// Contributed by Jason Merrill <jason@cygnus.com>
-// Build don't link:
-
-struct A { };
-
-int A;
-
-namespace N {
-  struct A *f ();
-}
-
-using namespace N;
-
-struct A *a;