Avoid ICE by using delay_span_bug

This commit is contained in:
Esteban Küber 2019-05-10 18:22:25 -07:00
parent 33cde4aac2
commit adc18eb7cf
3 changed files with 29 additions and 2 deletions

View file

@ -5653,10 +5653,11 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
match self.at(&self.misc(span), self.param_env).sup(impl_ty, self_ty) {
Ok(ok) => self.register_infer_ok_obligations(ok),
Err(_) => {
span_bug!(span,
self.tcx.sess.delay_span_bug(span, &format!(
"instantiate_value_path: (UFCS) {:?} was a subtype of {:?} but now is not?",
self_ty,
impl_ty);
impl_ty,
));
}
}
}

View file

@ -0,0 +1,17 @@
pub mod test {
pub struct A;
pub struct B;
pub struct Foo<T>(T);
impl Foo<A> {
fn foo() {}
}
impl Foo<B> {
fn foo() {}
}
}
fn main() {
test::Foo::<test::B>::foo(); //~ ERROR method `foo` is private
}

View file

@ -0,0 +1,9 @@
error[E0624]: method `foo` is private
--> $DIR/issue-53498.rs:16:5
|
LL | test::Foo::<test::B>::foo();
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0624`.