aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/bare-trait-object.stderr
blob: 6670c48cc1b9020433715decd06c418374c7de7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: trait objects without an explicit `dyn` are deprecated
  --> tests/ui/bare-trait-object.rs:11:16
   |
11 | impl Trait for Send + Sync {
   |                ^^^^^^^^^^^ help: use `dyn`: `dyn Send + Sync`
   |
note: the lint level is defined here
  --> tests/ui/bare-trait-object.rs:1:9
   |
1  | #![deny(bare_trait_objects)]
   |         ^^^^^^^^^^^^^^^^^^
   = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
   = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>