]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/lookup4.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / lookup4.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/lookup4.C b/gcc/testsuite/g++.old-deja/g++.ns/lookup4.C
deleted file mode 100644 (file)
index 208a9d6..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-//Build don't link:
-namespace X{
-  typedef int foo;
-  const int bar=2;
-  namespace Y{
-    void f(foo);
-    extern int g;
-    extern int g1;
-    struct h{
-      void i(foo);
-    };
-  }
-}
-
-void X::Y::f(foo)
-{
-}
-
-int X::Y::g = bar;
-int X::Y::g1(bar);
-
-void X::Y::h::i(foo)
-{}