@@ -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:13 :9
10+ --> $DIR/lint-tool-test.rs:14 :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:29 :9
16+ --> $DIR/lint-tool-test.rs:31 :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:33 :8
22+ --> $DIR/lint-tool-test.rs:36 :8
2323 |
2424LL | #[deny(this_lint_does_not_exist)]
2525 | ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -33,13 +33,13 @@ LL | #![cfg_attr(foo, warn(test_lint))]
3333 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
3434
3535warning: 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
36+ --> $DIR/lint-tool-test.rs:14 :9
3737 |
3838LL | #![deny(clippy_group)]
3939 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
4040
4141warning: 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
42+ --> $DIR/lint-tool-test.rs:31 :9
4343 |
4444LL | #[allow(test_group)]
4545 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
@@ -59,39 +59,57 @@ LL | #![cfg_attr(foo, warn(test_lint))]
5959 | ^^^^^^^^^ help: change it to: `clippy::test_lint`
6060
6161warning: 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
62+ --> $DIR/lint-tool-test.rs:14 :9
6363 |
6464LL | #![deny(clippy_group)]
6565 | ^^^^^^^^^^^^ help: change it to: `clippy::group`
6666
6767error: item is named 'lintme'
68- --> $DIR/lint-tool-test.rs:18 :1
68+ --> $DIR/lint-tool-test.rs:20 :1
6969 |
7070LL | fn lintme() { }
7171 | ^^^^^^^^^^^^^^^
7272 |
7373note: the lint level is defined here
74- --> $DIR/lint-tool-test.rs:13 :9
74+ --> $DIR/lint-tool-test.rs:14 :9
7575 |
7676LL | #![deny(clippy_group)]
7777 | ^^^^^^^^^^^^
7878 = note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
7979
8080error: item is named 'lintmetoo'
81- --> $DIR/lint-tool-test.rs:26 :5
81+ --> $DIR/lint-tool-test.rs:28 :5
8282 |
8383LL | fn lintmetoo() { }
8484 | ^^^^^^^^^^^^^^^^^^
8585 |
8686note: the lint level is defined here
87- --> $DIR/lint-tool-test.rs:13 :9
87+ --> $DIR/lint-tool-test.rs:14 :9
8888 |
8989LL | #![deny(clippy_group)]
9090 | ^^^^^^^^^^^^
9191 = note: `#[deny(clippy::test_group)]` implied by `#[deny(clippy::group)]`
9292
9393warning: 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
94+ --> $DIR/lint-tool-test.rs:31:9
95+ |
96+ LL | #[allow(test_group)]
97+ | ^^^^^^^^^^ help: change it to: `clippy::test_group`
98+
99+ 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
100+ --> $DIR/lint-tool-test.rs:9:23
101+ |
102+ LL | #![cfg_attr(foo, warn(test_lint))]
103+ | ^^^^^^^^^ help: change it to: `clippy::test_lint`
104+
105+ 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
106+ --> $DIR/lint-tool-test.rs:14:9
107+ |
108+ LL | #![deny(clippy_group)]
109+ | ^^^^^^^^^^^^ help: change it to: `clippy::group`
110+
111+ 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
112+ --> $DIR/lint-tool-test.rs:31:9
95113 |
96114LL | #[allow(test_group)]
97115 | ^^^^^^^^^^ help: change it to: `clippy::test_group`
0 commit comments