1
Fork 0

improve the printing of substs and trait-refs

This commit is contained in:
Ariel Ben-Yehuda 2016-04-05 22:56:23 +03:00
parent 31247e5a0b
commit b23648fe4a
118 changed files with 350 additions and 291 deletions

View file

@ -23,5 +23,5 @@ fn bar<T: Send>(_: T) {}
fn main() {
let x = Foo { a: 5 };
bar(x);
//~^ ERROR `Foo : std::marker::Send` is not satisfied
//~^ ERROR `Foo: std::marker::Send` is not satisfied
}