Rollup merge of #36056 - birryree:E0194_new_error_format, r=jonathandturner

Update E0194 to new error format

Fixes #35280 to update E0194 to support new error message format. Part of #35233.

A separate Github issue #36057 tracks the bonus portion of the original ticket.

r? @jonathandturner
This commit is contained in:
Guillaume Gomez 2016-08-30 10:39:07 +02:00 committed by GitHub
commit 751e4db2f4
2 changed files with 7 additions and 3 deletions

View file

@ -631,7 +631,9 @@ fn error_392<'a, 'tcx>(ccx: &CrateCtxt<'a, 'tcx>, span: Span, param_name: ast::N
}
fn error_194(tcx: TyCtxt, span: Span, name: ast::Name) {
span_err!(tcx.sess, span, E0194,
struct_span_err!(tcx.sess, span, E0194,
"type parameter `{}` shadows another type parameter of the same name",
name);
name)
.span_label(span, &format!("`{}` shadows another type parameter", name))
.emit();
}

View file

@ -10,7 +10,9 @@
trait Foo<T> {
fn do_something(&self) -> T;
fn do_something_else<T: Clone>(&self, bar: T); //~ ERROR E0194
fn do_something_else<T: Clone>(&self, bar: T);
//~^ ERROR E0194
//~| NOTE `T` shadows another type parameter
}
fn main() {