]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/externC5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / externC5.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/externC5.C b/gcc/testsuite/g++.old-deja/g++.other/externC5.C
deleted file mode 100644 (file)
index aadbc5a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// Origin: schmid@snake.iap.physik.tu-darmstadt.de
-
-extern "C" int rand (void) throw ();
-
-namespace std
-{ 
-extern "C" int rand(void) throw(); 
-template <class T> void f(T a) {}
-}
-
-using namespace std;
-
-int main()
-{
-  f(rand);
-  f(std::rand);
-  f(::rand);
-}