diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 1998-06-02 20:10:23 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-06-02 20:10:23 +0000 |
commit | 666e0f5ad52098975ed535bc3f3a128aa5c8bf51 (patch) | |
tree | deae0d2e0e4adaabc8c8f7ba2f658da48e9e716c /gcc | |
parent | 0d4ba75b832dc5088602d178491dab5c99ba1705 (diff) | |
download | gcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.zip gcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.tar.gz gcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.tar.bz2 |
Per Martin.
From-SVN: r20191
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb55.C | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb55.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb55.C index 56b7e43..4ba4b54 100644 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb55.C +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb55.C @@ -1,9 +1,12 @@ // Build don't link: +// Since the constructor is in streambuf.h, additional diagnostics are +// produced, which are not really supported in the old-deja framework +// excess errors test - XFAIL *-*-* #include <strstream.h> void t( char* buf ) { - istrstream str = buf; + istrstream str = buf; //ERROR - inaccessible copy constructor } |