summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/force-warn/lint-group-allowed-cli-warn-by-default-lint.stderr
blob: 6e67ebf2747337bd0c11d04e7392a052112bbc7a (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
43
44
45
warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/lint-group-allowed-cli-warn-by-default-lint.rs:8:25
   |
LL | pub fn function(_x: Box<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>
help: use `dyn`
   |
LL - pub fn function(_x: Box<SomeTrait>) {}
LL + pub fn function(_x: Box<dyn SomeTrait>) {}
   |

warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/lint-group-allowed-cli-warn-by-default-lint.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<SomeTrait>) {}
LL + pub fn function(_x: Box<dyn SomeTrait>) {}
   |

warning: trait objects without an explicit `dyn` are deprecated
  --> $DIR/lint-group-allowed-cli-warn-by-default-lint.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<SomeTrait>) {}
LL + pub fn function(_x: Box<dyn SomeTrait>) {}
   |

warning: 3 warnings emitted