From a6690ea2fe83924e5bb37bbb6a1341444d26a65b Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 14 Sep 2021 19:13:54 -0700 Subject: [PATCH] Update ui test suite to nightly-2021-09-14 --- test_suite/tests/ui/remote/wrong_de.stderr | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test_suite/tests/ui/remote/wrong_de.stderr b/test_suite/tests/ui/remote/wrong_de.stderr index b2e9a3709..132d5341f 100644 --- a/test_suite/tests/ui/remote/wrong_de.stderr +++ b/test_suite/tests/ui/remote/wrong_de.stderr @@ -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())] + | +++++++