]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/net29.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / net29.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/net29.C b/gcc/testsuite/g++.old-deja/g++.mike/net29.C
deleted file mode 100644 (file)
index 6635241..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// This is a test case for the recent libg++ make check problem.
-// Build don't link:
-
-class SubString {
-public:
-  SubString();
-  SubString(const SubString& x);
-};
-
-class String {
-public:
-  String();
-  String(const SubString&  x);
-};
-
-int operator!=(const String& x, const SubString&  y);
-int operator!=(const String& x, const String& y);
-
-int operator!=(const SubString& x, const String& y);
-int operator!=(const SubString& x, const SubString&  y);
-
-void comparetest()
-{  
-  String x;
-  SubString s;
-  x != s;
-}