]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/externC3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / externC3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/externC3.C b/gcc/testsuite/g++.old-deja/g++.other/externC3.C
deleted file mode 100644 (file)
index 4869635..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that two extern "C" declarations of the same name in different
-// namespaces are treated as declaring the same function.
-
-namespace foo {
-  extern "C" int f ();
-}
-
-extern "C" int f () { return 0; }
-
-using namespace foo;
-
-int main ()
-{
-  f ();
-}