]> git.proxmox.com Git - rustc.git/blob - src/test/ui-fulldeps/lint_tool_cmdline_allow.stderr
New upstream version 1.34.2+dfsg1
[rustc.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