aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb38.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb38.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb38.C37
1 files changed, 0 insertions, 37 deletions
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
index 9a75405d129..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb38.C
+++ /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;
-}