From 036a373ab48cd32e0543c6d06d5e26629f8be3d4 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 6 Jul 2023 14:27:43 -0700 Subject: [PATCH] Update ui tests with 2021-edition diagnostics --- tests/ui/bare-trait-object.stderr | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tests/ui/bare-trait-object.stderr b/tests/ui/bare-trait-object.stderr index 50b2048..7ff6af1 100644 --- a/tests/ui/bare-trait-object.stderr +++ b/tests/ui/bare-trait-object.stderr @@ -1,17 +1,10 @@ -error: trait objects without an explicit `dyn` are deprecated +error[E0782]: trait objects must include the `dyn` keyword --> tests/ui/bare-trait-object.rs:11:16 | 11 | impl Trait for Send + Sync { | ^^^^^^^^^^^ | - = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! - = note: for more information, see -note: the lint level is defined here - --> tests/ui/bare-trait-object.rs:1:9 - | -1 | #![deny(bare_trait_objects)] - | ^^^^^^^^^^^^^^^^^^ -help: use `dyn` +help: add `dyn` keyword before this trait | 11 | impl Trait for dyn Send + Sync { | +++