summary refs log tree commit diff
path: root/src/test/ui/lint/force-warn/cap-lints-allow.stderr
blob: f3ae16b5657f2eb5bf7fc1b919ef4b2cf9e6d503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/cap-lints-allow.rs:8:25
   |
LL | pub fn function(_x: Box<SomeTrait>) {}
   |                         ^^^^^^^^^ help: use `dyn`: `dyn SomeTrait`
   |
   = note: requested on the command line with `--force-warn bare-trait-objects`
   = warning: this is accepted in the current edition (Rust 2015) 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>

warning: 1 warning emitted