]> git.proxmox.com Git - rustc.git/blob - src/test/ui-fulldeps/lint-tool-test.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui-fulldeps / lint-tool-test.stderr
1 warning: lint name `test_lint` is deprecated and may not have an effect in the future. Also `cfg_attr(cargo-clippy)` won't be necessary anymore
2 --> $DIR/lint-tool-test.rs:8:23
3 |
4 LL | #![cfg_attr(foo, warn(test_lint))]
5 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
6 |
7 = note: #[warn(renamed_and_removed_lints)] on by default
8
9 warning: lint name `clippy_group` is deprecated and may not have an effect in the future. Also `cfg_attr(cargo-clippy)` won't be necessary anymore
10 --> $DIR/lint-tool-test.rs:11:9
11 |
12 LL | #![deny(clippy_group)]
13 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
14
15 warning: lint name `test_group` is deprecated and may not have an effect in the future. Also `cfg_attr(cargo-clippy)` won't be necessary anymore
16 --> $DIR/lint-tool-test.rs:25:9
17 |
18 LL | #[allow(test_group)]
19 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
20
21 warning: unknown lint: `this_lint_does_not_exist`
22 --> $DIR/lint-tool-test.rs:27:8
23 |
24 LL | #[deny(this_lint_does_not_exist)]
25 | ^^^^^^^^^^^^^^^^^^^^^^^^
26 |
27 = note: #[warn(unknown_lints)] on by default
28
29 warning: lint name `test_lint` is deprecated and may not have an effect in the future. Also `cfg_attr(cargo-clippy)` won't be necessary anymore
30 --> $DIR/lint-tool-test.rs:8:23
31 |
32 LL | #![cfg_attr(foo, warn(test_lint))]
33 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
34
35 error: item is named 'lintme'
36 --> $DIR/lint-tool-test.rs:14:1
37 |
38 LL | fn lintme() { }
39 | ^^^^^^^^^^^^^^^
40 |
41 note: lint level defined here
42 --> $DIR/lint-tool-test.rs:11:9
43 |
44 LL | #![deny(clippy_group)]
45 | ^^^^^^^^^^^^
46 = note: #[deny(clippy::test_lint)] implied by #[deny(clippy::group)]
47
48 error: item is named 'lintmetoo'
49 --> $DIR/lint-tool-test.rs:22:5
50 |
51 LL | fn lintmetoo() { }
52 | ^^^^^^^^^^^^^^^^^^
53 |
54 note: lint level defined here
55 --> $DIR/lint-tool-test.rs:11:9
56 |
57 LL | #![deny(clippy_group)]
58 | ^^^^^^^^^^^^
59 = note: #[deny(clippy::test_group)] implied by #[deny(clippy::group)]
60
61 error: aborting due to 2 previous errors
62