aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Lipe <robertl@gcc.gnu.org>1998-06-02 20:10:23 +0000
committerRobert Lipe <robertl@gcc.gnu.org>1998-06-02 20:10:23 +0000
commit666e0f5ad52098975ed535bc3f3a128aa5c8bf51 (patch)
treedeae0d2e0e4adaabc8c8f7ba2f658da48e9e716c
parent0d4ba75b832dc5088602d178491dab5c99ba1705 (diff)
downloadgcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.zip
gcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.tar.gz
gcc-666e0f5ad52098975ed535bc3f3a128aa5c8bf51.tar.bz2
Per Martin.
From-SVN: r20191
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb55.C5
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
}