Skip to content

Commit

Permalink
Update ui test suite to nightly-2021-09-14
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 15, 2021
1 parent 65e1a50 commit a6690ea
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test_suite/tests/ui/remote/wrong_de.stderr
Expand Up @@ -2,9 +2,10 @@ error[E0308]: mismatched types
--> $DIR/wrong_de.rs:7:10
|
7 | #[derive(Deserialize)]
| ^^^^^^^^^^^
| |
| expected `u16`, found `u8`
| help: you can convert a `u8` to a `u16`: `Deserialize.into()`
| ^^^^^^^^^^^ expected `u16`, found `u8`
|
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
help: you can convert a `u8` to a `u16`
|
7 | #[derive(Deserialize.into())]
| +++++++

0 comments on commit a6690ea

Please sign in to comment.