summary refs log tree commit diff
path: root/src/test/ui/lint/force-warn/lint-group-allowed-lint-group.stderr
blob: fcbae024eb60fa77e3f261718b2a41cea8613f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/lint-group-allowed-lint-group.rs:10:25
   |
LL | pub fn function(_x: Box<SomeTrait>) {}
   |                         ^^^^^^^^^ help: use `dyn`: `dyn SomeTrait`
   |
   = note: `--force-warn bare-trait-objects` implied by `--force-warn rust-2018-idioms`
   = 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