]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/lint-tool-test.stderr
Rollup merge of #103283 - nbarrios1337:unsafe-impl-suggestions, r=cjgillot
[rust.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.
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:14: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:31: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:14:9
29    |
30 LL | #![deny(clippy_group)]
31    |         ^^^^^^^^^^^^ help: change it to: `clippy::group`
32
33 warning: lint name `test_group` is deprecated and may not have an effect in the future.
34   --> $DIR/lint-tool-test.rs:31:9
35    |
36 LL | #[allow(test_group)]
37    |         ^^^^^^^^^^ help: change it to: `clippy::test_group`
38
39 warning: unknown lint: `this_lint_does_not_exist`
40   --> $DIR/lint-tool-test.rs:36:8
41    |
42 LL | #[deny(this_lint_does_not_exist)]
43    |        ^^^^^^^^^^^^^^^^^^^^^^^^
44    |
45    = note: `#[warn(unknown_lints)]` on by default
46
47 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
48   --> $DIR/lint-tool-test.rs:6:1
49    |
50 LL | #![plugin(lint_tool_test)]
51    | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
52    |
53    = note: `#[warn(deprecated)]` on by default
54
55 warning: lint name `test_lint` is deprecated and may not have an effect in the future.
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.
62   --> $DIR/lint-tool-test.rs:14:9
63    |
64 LL | #![deny(clippy_group)]
65    |         ^^^^^^^^^^^^ help: change it to: `clippy::group`
66
67 error: item is named 'lintme'
68   --> $DIR/lint-tool-test.rs:20:1
69    |
70 LL | fn lintme() { }
71    | ^^^^^^^^^^^^^^^
72    |
73 note: the lint level is defined here
74   --> $DIR/lint-tool-test.rs:14:9
75    |
76 LL | #![deny(clippy_group)]
77    |         ^^^^^^^^^^^^
78    = note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
79
80 error: item is named 'lintmetoo'
81   --> $DIR/lint-tool-test.rs:28:5
82    |
83 LL |     fn lintmetoo() { }
84    |     ^^^^^^^^^^^^^^^^^^
85    |
86    = note: `#[deny(clippy::test_group)]` implied by `#[deny(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:31:9
90    |
91 LL | #[allow(test_group)]
92    |         ^^^^^^^^^^ help: change it to: `clippy::test_group`
93
94 warning: lint name `test_lint` is deprecated and may not have an effect in the future.
95   --> $DIR/lint-tool-test.rs:9:23
96    |
97 LL | #![cfg_attr(foo, warn(test_lint))]
98    |                       ^^^^^^^^^ help: change it to: `clippy::test_lint`
99
100 warning: lint name `clippy_group` is deprecated and may not have an effect in the future.
101   --> $DIR/lint-tool-test.rs:14:9
102    |
103 LL | #![deny(clippy_group)]
104    |         ^^^^^^^^^^^^ help: change it to: `clippy::group`
105
106 warning: lint name `test_group` is deprecated and may not have an effect in the future.
107   --> $DIR/lint-tool-test.rs:31:9
108    |
109 LL | #[allow(test_group)]
110    |         ^^^^^^^^^^ help: change it to: `clippy::test_group`
111
112 error: aborting due to 2 previous errors; 14 warnings emitted
113