init.c (build_member_call): For now, don't convert to intermediate base if it would cause an error.

* init.c (build_member_call): For now, don't convert to
        intermediate base if it would cause an error.

From-SVN: r52129
This commit is contained in:
Jason Merrill 2002-04-10 08:18:44 -04:00
parent bf6d4777dd
commit 6b7c9242a8
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ void inh::myf(int i) {
}
void top_t::myf(int i) {
inh::myf(i); // ERROR - cannot convert to inh
inh::myf(i); // ERROR - cannot convert to inh XFAIL *-*-*
mel::myf(i);
}