]> git.proxmox.com Git - rustc.git/blob - tests/ui-fulldeps/plugin/lint-tool-test.stderr
New upstream version 1.71.1+dfsg1
[rustc.git] / tests / ui-fulldeps / plugin / lint-tool-test.stderr
1 warning: lint name `test_lint` is deprecated and may not have an effect in the future.
2 --> $DIR/lint-tool-test.rs:9: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.
10 --> $DIR/lint-tool-test.rs:13: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.
16 --> $DIR/lint-tool-test.rs:29:9
17 |
18 LL | #[allow(test_group)]
19 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
20
21 warning: lint name `test_lint` is deprecated and may not have an effect in the future.
22 --> $DIR/lint-tool-test.rs:9:23
23 |
24 LL | #![cfg_attr(foo, warn(test_lint))]
25 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
26
27 warning: lint name `clippy_group` is deprecated and may not have an effect in the future.
28 --> $DIR/lint-tool-test.rs:13:9
29 |
30 LL | #![deny(clippy_group)]
31 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
32
33 error: item is named 'lintme'
34 --> $DIR/lint-tool-test.rs:18:1
35 |
36 LL | fn lintme() { }
37 | ^^^^^^^^^^^^^^^
38 |
39 note: the lint level is defined here
40 --> $DIR/lint-tool-test.rs:13:9
41 |
42 LL | #![deny(clippy_group)]
43 | ^^^^^^^^^^^^
44 = note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
45
46 error: item is named 'lintmetoo'
47 --> $DIR/lint-tool-test.rs:26:5
48 |
49 LL | fn lintmetoo() { }
50 | ^^^^^^^^^^^^^^^^^^
51 |
52 = note: `#[deny(clippy::test_group)]` implied by `#[deny(clippy::group)]`
53
54 warning: lint name `test_group` is deprecated and may not have an effect in the future.
55 --> $DIR/lint-tool-test.rs:29:9
56 |
57 LL | #[allow(test_group)]
58 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
59
60 warning: unknown lint: `this_lint_does_not_exist`
61 --> $DIR/lint-tool-test.rs:33:8
62 |
63 LL | #[deny(this_lint_does_not_exist)]
64 | ^^^^^^^^^^^^^^^^^^^^^^^^
65 |
66 = note: `#[warn(unknown_lints)]` on by default
67
68 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
69 --> $DIR/lint-tool-test.rs:6:1
70 |
71 LL | #![plugin(lint_tool_test)]
72 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
73 |
74 = note: `#[warn(deprecated)]` on by default
75
76 warning: lint name `test_lint` is deprecated and may not have an effect in the future.
77 --> $DIR/lint-tool-test.rs:9:23
78 |
79 LL | #![cfg_attr(foo, warn(test_lint))]
80 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
81
82 warning: lint name `clippy_group` is deprecated and may not have an effect in the future.
83 --> $DIR/lint-tool-test.rs:13:9
84 |
85 LL | #![deny(clippy_group)]
86 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
87
88 warning: lint name `test_group` is deprecated and may not have an effect in the future.
89 --> $DIR/lint-tool-test.rs:29:9
90 |
91 LL | #[allow(test_group)]
92 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
93
94 error: aborting due to 2 previous errors; 11 warnings emitted
95