]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb38.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb38.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb38.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb38.C
deleted file mode 100644 (file)
index 9a75405..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-// Build don't link: 
-class string
-{
-public:
-    string();
-    string(const string& x);
-    string(const char* t);
-
-    ~string();
-};
-
-void set_status(string message);
-
-class StatusDelay {
-private:
-    string cause;
-
-public:
-    StatusDelay(const string& c)
-        : cause(c)
-    {
-        set_status(cause);
-    }
-
-    ~StatusDelay()
-    {
-        set_status(cause);
-    }
-};
-
-static char delay_message[] = "Filtering files";
-
-static void searchRemote()
-{
-    StatusDelay delay(delay_message);
-    return;
-}