@@ -7,19 +7,19 @@ LL | #![cfg_attr(foo, warn(test_lint))]
7
7
= note: `#[warn(renamed_and_removed_lints)]` on by default
8
8
9
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:13 :9
10
+ --> $DIR/lint-tool-test.rs:14 :9
11
11
|
12
12
LL | #![deny(clippy_group)]
13
13
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
14
14
15
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:29 :9
16
+ --> $DIR/lint-tool-test.rs:31 :9
17
17
|
18
18
LL | #[allow(test_group)]
19
19
| ^^^^^^^^^^ help: change it to: `clippy::test_group`
20
20
21
21
warning: unknown lint: `this_lint_does_not_exist`
22
- --> $DIR/lint-tool-test.rs:33 :8
22
+ --> $DIR/lint-tool-test.rs:36 :8
23
23
|
24
24
LL | #[deny(this_lint_does_not_exist)]
25
25
| ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -33,13 +33,13 @@ LL | #![cfg_attr(foo, warn(test_lint))]
33
33
| ^^^^^^^^^ help: change it to: `clippy::test_lint`
34
34
35
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
36
+ --> $DIR/lint-tool-test.rs:14 :9
37
37
|
38
38
LL | #![deny(clippy_group)]
39
39
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
40
40
41
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
42
+ --> $DIR/lint-tool-test.rs:31 :9
43
43
|
44
44
LL | #[allow(test_group)]
45
45
| ^^^^^^^^^^ help: change it to: `clippy::test_group`
@@ -59,39 +59,57 @@ LL | #![cfg_attr(foo, warn(test_lint))]
59
59
| ^^^^^^^^^ help: change it to: `clippy::test_lint`
60
60
61
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
62
+ --> $DIR/lint-tool-test.rs:14 :9
63
63
|
64
64
LL | #![deny(clippy_group)]
65
65
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
66
66
67
67
error: item is named 'lintme'
68
- --> $DIR/lint-tool-test.rs:18 :1
68
+ --> $DIR/lint-tool-test.rs:20 :1
69
69
|
70
70
LL | fn lintme() { }
71
71
| ^^^^^^^^^^^^^^^
72
72
|
73
73
note: lint level defined here
74
- --> $DIR/lint-tool-test.rs:13 :9
74
+ --> $DIR/lint-tool-test.rs:14 :9
75
75
|
76
76
LL | #![deny(clippy_group)]
77
77
| ^^^^^^^^^^^^
78
78
= note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
79
79
80
80
error: item is named 'lintmetoo'
81
- --> $DIR/lint-tool-test.rs:26 :5
81
+ --> $DIR/lint-tool-test.rs:28 :5
82
82
|
83
83
LL | fn lintmetoo() { }
84
84
| ^^^^^^^^^^^^^^^^^^
85
85
|
86
86
note: lint level defined here
87
- --> $DIR/lint-tool-test.rs:13 :9
87
+ --> $DIR/lint-tool-test.rs:14 :9
88
88
|
89
89
LL | #![deny(clippy_group)]
90
90
| ^^^^^^^^^^^^
91
91
= note: `#[deny(clippy::test_group)]` implied by `#[deny(clippy::group)]`
92
92
93
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
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
95
113
|
96
114
LL | #[allow(test_group)]
97
115
| ^^^^^^^^^^ help: change it to: `clippy::test_group`
0 commit comments