@@ -7,19 +7,19 @@ LL | #![cfg_attr(foo, warn(test_lint))]
77 = note: `#[warn(renamed_and_removed_lints)]` on by default
88
99warning: 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:12 :9
10+ --> $DIR/lint-tool-test.rs:13 :9
1111 |
1212LL | #![deny(clippy_group)]
1313 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
1414
1515warning: 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:26 :9
16+ --> $DIR/lint-tool-test.rs:29 :9
1717 |
1818LL | #[allow(test_group)]
1919 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
2020
2121warning: unknown lint: `this_lint_does_not_exist`
22- --> $DIR/lint-tool-test.rs:28 :8
22+ --> $DIR/lint-tool-test.rs:33 :8
2323 |
2424LL | #[deny(this_lint_does_not_exist)]
2525 | ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -32,6 +32,18 @@ warning: lint name `test_lint` is deprecated and may not have an effect in the f
3232LL | #![cfg_attr(foo, warn(test_lint))]
3333 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
3434
35+ 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
36+ --> $DIR/lint-tool-test.rs:13:9
37+ |
38+ LL | #![deny(clippy_group)]
39+ | ^^^^^^^^^^^^ help: change it to: `clippy::group`
40+
41+ 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
42+ --> $DIR/lint-tool-test.rs:29:9
43+ |
44+ LL | #[allow(test_group)]
45+ | ^^^^^^^^^^ help: change it to: `clippy::test_group`
46+
3547warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
3648 --> $DIR/lint-tool-test.rs:6:1
3749 |
@@ -40,31 +52,49 @@ LL | #![plugin(lint_tool_test)]
4052 |
4153 = note: `#[warn(deprecated)]` on by default
4254
55+ 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
56+ --> $DIR/lint-tool-test.rs:9:23
57+ |
58+ LL | #![cfg_attr(foo, warn(test_lint))]
59+ | ^^^^^^^^^ help: change it to: `clippy::test_lint`
60+
61+ 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
62+ --> $DIR/lint-tool-test.rs:13:9
63+ |
64+ LL | #![deny(clippy_group)]
65+ | ^^^^^^^^^^^^ help: change it to: `clippy::group`
66+
4367error: item is named 'lintme'
44- --> $DIR/lint-tool-test.rs:15 :1
68+ --> $DIR/lint-tool-test.rs:18 :1
4569 |
4670LL | fn lintme() { }
4771 | ^^^^^^^^^^^^^^^
4872 |
4973note: lint level defined here
50- --> $DIR/lint-tool-test.rs:12 :9
74+ --> $DIR/lint-tool-test.rs:13 :9
5175 |
5276LL | #![deny(clippy_group)]
5377 | ^^^^^^^^^^^^
5478 = note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
5579
5680error: item is named 'lintmetoo'
57- --> $DIR/lint-tool-test.rs:23 :5
81+ --> $DIR/lint-tool-test.rs:26 :5
5882 |
5983LL | fn lintmetoo() { }
6084 | ^^^^^^^^^^^^^^^^^^
6185 |
6286note: lint level defined here
63- --> $DIR/lint-tool-test.rs:12 :9
87+ --> $DIR/lint-tool-test.rs:13 :9
6488 |
6589LL | #![deny(clippy_group)]
6690 | ^^^^^^^^^^^^
6791 = note: `#[deny(clippy::test_group)]` implied by `#[deny(clippy::group)]`
6892
93+ 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
94+ --> $DIR/lint-tool-test.rs:29:9
95+ |
96+ LL | #[allow(test_group)]
97+ | ^^^^^^^^^^ help: change it to: `clippy::test_group`
98+
6999error: aborting due to 2 previous errors
70100
0 commit comments