summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/force-warn/cap-lints-allow.stderr
blob: 7f0fd8530e2cc27c352256f504a234a8394b7c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/cap-lints-allow.rs:8:25
   |
LL | pub fn function(_x: Box<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>
help: use `dyn`
   |
LL | pub fn function(_x: Box<dyn SomeTrait>) {}
   |                         +++

warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/cap-lints-allow.rs:8:25
   |
LL | pub fn function(_x: Box<SomeTrait>) {}
   |                         ^^^^^^^^^
   |
   = 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>
help: use `dyn`
   |
LL | pub fn function(_x: Box<dyn SomeTrait>) {}
   |                         +++

warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/cap-lints-allow.rs:8:25
   |
LL | pub fn function(_x: Box<SomeTrait>) {}
   |                         ^^^^^^^^^
   |
   = 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>
help: use `dyn`
   |
LL | pub fn function(_x: Box<dyn SomeTrait>) {}
   |                         +++

warning: 3 warnings emitted