summary refs log tree commit diff
path: root/src/test/ui/lint/force-warn/lint-group-allowed-warn-by-default-lint.stderr
blob: 1212ae083c23b2d8c0a6c5d8e55c36dc50404938 (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-warn-by-default-lint.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