Update CI image to the latest rustc (#10142)

* Update CI image to the latest rustc

* Update rustc error messages

* whitespace

* update test output

* updating compiler errors

* kid's finally learning to read and spots the TRYBUILD=overwrite message.

* undoing a little blessing

* imperfect error msg

* revert ci image to production

Co-authored-by: gilescope <gilescope@gmail.com>
This commit is contained in:
Alexander Samusev
2021-11-03 13:23:32 +01:00
committed by GitHub
parent c448c23c6e
commit a46fa8461b
17 changed files with 189 additions and 160 deletions
@@ -58,7 +58,10 @@ error[E0308]: mismatched types
--> $DIR/type_reference_in_impl_runtime_apis_call.rs:19:11
|
19 | fn test(data: &u64) {
| ^^^^^^^
| |
| expected `u64`, found `&u64`
| help: consider removing the borrow: `data`
| ^^^^^^^ expected `u64`, found `&u64`
|
help: consider removing the borrow
|
19 - fn test(data: &u64) {
19 + fn test(data: &u64) {
|