Rollup merge of #35333 - nickmass:e0055-formatting, r=jonathandturner

Update compiler error E0055 to use new error format

Addresses #35213, Part of the #35233 meta bug

r? @jonathandturner
This commit is contained in:
Guillaume Gomez 2016-08-05 16:13:00 +02:00 committed by GitHub
commit 0339904fb4
2 changed files with 7 additions and 3 deletions

View File

@ -54,9 +54,11 @@ impl<'a, 'gcx, 'tcx> Iterator for Autoderef<'a, 'gcx, 'tcx> {
if self.steps.len() == tcx.sess.recursion_limit.get() {
// We've reached the recursion limit, error gracefully.
span_err!(tcx.sess, self.span, E0055,
struct_span_err!(tcx.sess, self.span, E0055,
"reached the recursion limit while auto-dereferencing {:?}",
self.cur_ty);
self.cur_ty)
.span_label(self.span, &format!("deref recursion limit reached"))
.emit();
return None;
}

View File

@ -18,5 +18,7 @@ impl Foo {
fn main() {
let foo = Foo;
let ref_foo = &&Foo;
ref_foo.foo(); //~ ERROR E0055
ref_foo.foo();
//~^ ERROR E0055
//~| NOTE deref recursion limit reached
}