X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.brendan%2Fcrash62.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.brendan%2Fcrash62.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=c86f9e6bb4ac083250df9bfa5f806b7a2d7cf8d3;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/crash62.C b/gcc/testsuite/g++.old-deja/g++.brendan/crash62.C deleted file mode 100644 index c86f9e6b..00000000 --- a/gcc/testsuite/g++.old-deja/g++.brendan/crash62.C +++ /dev/null @@ -1,32 +0,0 @@ -// Build don't link: -// GROUPS passed old-abort -#include - - void - fubar(std::ostream* out, const char* s) - { - (*out) << s << std::endl; - return; - } - - int - main() - { - // Declare a ref and a pointer to the same ostream. - // - std::ostream* out = &std::cerr; - std::ostream& die = std::cerr; - - // Valid call to fubar. - // - fubar(out, "First line."); - - // Invalid call to fubar. (1st arg is an ostream&. fubar expects - // ostream*.)This should be a syntax error, but g++ does not catch it. - // Call to this function results in a bus error in fubar when the 1st - // arg is dereferenced. - // - fubar(die, "Second line.");// ERROR - cannot convert .die.* - - return 1; - }