]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-tool-cmdline-allow.stderr
Auto merge of #61421 - vorner:string-in-rc-into-raw-docs, r=RalfJung
[rust.git] / src / test / ui-fulldeps / lint-tool-cmdline-allow.stderr
1 warning: lint name `test_lint` is deprecated and does not have an effect anymore. Use: clippy::test_lint
2    |
3    = note: requested on the command line with `-A test_lint`
4
5 warning: item is named 'lintme'
6   --> $DIR/lint-tool-cmdline-allow.rs:10:1
7    |
8 LL | fn lintme() {}
9    | ^^^^^^^^^^^^^^
10    |
11    = note: #[warn(clippy::test_lint)] on by default
12
13 warning: function is never used: `lintme`
14   --> $DIR/lint-tool-cmdline-allow.rs:10:1
15    |
16 LL | fn lintme() {}
17    | ^^^^^^^^^^^
18    |
19 note: lint level defined here
20   --> $DIR/lint-tool-cmdline-allow.rs:7:9
21    |
22 LL | #![warn(unused)]
23    |         ^^^^^^
24    = note: #[warn(dead_code)] implied by #[warn(unused)]
25