]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-renamed-cmdline.stderr
Merge commit '15c8d31392b9fbab3b3368b67acc4bbe5983115a' into cranelift-rebase
[rust.git] / src / test / ui / lint / lint-renamed-cmdline.stderr
1 warning: lint `bare_trait_object` has been renamed to `bare_trait_objects`
2    |
3    = note: requested on the command line with `-D bare_trait_object`
4
5 warning: lint `bare_trait_object` has been renamed to `bare_trait_objects`
6    |
7    = note: requested on the command line with `-D bare_trait_object`
8
9 warning: lint `bare_trait_object` has been renamed to `bare_trait_objects`
10    |
11    = note: requested on the command line with `-D bare_trait_object`
12
13 warning: lint `bare_trait_object` has been renamed to `bare_trait_objects`
14    |
15    = note: requested on the command line with `-D bare_trait_object`
16
17 error: unused variable: `unused`
18   --> $DIR/lint-renamed-cmdline.rs:8:17
19    |
20 LL | fn main() { let unused = (); }
21    |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_unused`
22    |
23 note: the lint level is defined here
24   --> $DIR/lint-renamed-cmdline.rs:7:8
25    |
26 LL | #[deny(unused)]
27    |        ^^^^^^
28    = note: `#[deny(unused_variables)]` implied by `#[deny(unused)]`
29
30 error: aborting due to previous error; 4 warnings emitted
31