aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorMark Mitchell <mark@markmitchell.com>1998-12-10 13:35:36 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1998-12-10 13:35:36 +0000
commit513e9d13b4619d6ee88fce6f59d24962951e6f71 (patch)
tree777ba98a8f4f2888d1ea3a13f13a6648723258eb /gcc/testsuite
parent353f10d599e12e831b1f51baee31d06613165144 (diff)
downloadgcc-513e9d13b4619d6ee88fce6f59d24962951e6f71.zip
gcc-513e9d13b4619d6ee88fce6f59d24962951e6f71.tar.gz
gcc-513e9d13b4619d6ee88fce6f59d24962951e6f71.tar.bz2
class.c (instantiate_type): Return error_mark_node rather than junk.
* class.c (instantiate_type): Return error_mark_node rather than junk. From-SVN: r24240
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb131.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
index f0f7feb..d966fd9 100644
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
+++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
@@ -10,7 +10,7 @@ struct a {
void bar( double );
void bar( float );
- void foo( void (a::*member)(float) );
+ void foo( void (a::*member)(float) ); // ERROR - candidate
};
a::a()