X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.robertl%2Feb35.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.robertl%2Feb35.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=e28fb4925f6e9da7ce5e5f66601e1d11bbe28b3d;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb35.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb35.C deleted file mode 100644 index e28fb492..00000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb35.C +++ /dev/null @@ -1,38 +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; -}