]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/alias4.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / alias4.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/alias4.C b/gcc/testsuite/g++.old-deja/g++.ns/alias4.C
deleted file mode 100644 (file)
index 16c4dca..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-namespace A = B;  // ERROR - unknown namespace
-
-namespace C{}
-namespace D = C;  
-namespace D {     // ERROR - reopening namespace with alias
-  void f();
-}
-
-void C::f(){}     // ERROR - previous definition
-
-void D::f(){}     // ERROR - redefinition
-
-namespace E = C::F; // ERROR - unknown namespace