]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/alias3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / alias3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/alias3.C b/gcc/testsuite/g++.old-deja/g++.ns/alias3.C
deleted file mode 100644 (file)
index 3b8de0c..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-namespace A{
-  struct X{};
-  void f(X&);
-  extern int i;
-  namespace a_very_long_namespace_name{
-    int k;
-  }
-}
-
-namespace B = A;
-namespace B = A;
-namespace B = B;
-
-namespace avl = A::a_very_long_namespace_name;
-
-void B::f(A::X& x)
-{
-  B::f(x);
-  f(x);
-  avl::k = 1;
-}
-
-int B::i = 0;
-
-int main()
-{
-  B::X x;
-  if (B::i)
-    A::f(x);
-}