rust/src/test/ui-fulldeps/lint-tool-test.stderr

71 lines
2.4 KiB
Plaintext
Raw Normal View History

2018-08-30 03:27:35 -05:00
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
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:9:23
|
2018-08-30 03:27:35 -05:00
LL | #![cfg_attr(foo, warn(test_lint))]
| ^^^^^^^^^ help: change it to: `clippy::test_lint`
2018-08-27 16:22:47 -05:00
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
2018-08-27 16:22:47 -05:00
2018-08-30 03:27:35 -05:00
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
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:12:9
2018-08-30 03:27:35 -05:00
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
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
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:26:9
2018-08-27 16:22:47 -05:00
|
LL | #[allow(test_group)]
| ^^^^^^^^^^ help: change it to: `clippy::test_group`
warning: unknown lint: `this_lint_does_not_exist`
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:28:8
2018-08-27 16:22:47 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[deny(this_lint_does_not_exist)]
2018-08-27 16:22:47 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unknown_lints)]` on by default
2018-08-27 16:22:47 -05:00
2018-08-30 03:27:35 -05:00
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
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:9:23
2018-08-27 16:22:47 -05:00
|
2018-08-30 03:27:35 -05:00
LL | #![cfg_attr(foo, warn(test_lint))]
| ^^^^^^^^^ help: change it to: `clippy::test_lint`
2018-08-27 16:22:47 -05:00
warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:6:1
|
LL | #![plugin(lint_tool_test)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
2019-10-03 02:33:28 -05:00
|
= note: `#[warn(deprecated)]` on by default
2018-08-27 16:22:47 -05:00
error: item is named 'lintme'
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:15:1
2018-08-27 16:22:47 -05:00
|
2019-03-09 06:03:44 -06:00
LL | fn lintme() { }
| ^^^^^^^^^^^^^^^
|
2018-08-27 16:22:47 -05:00
note: lint level defined here
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:12:9
2018-08-27 16:22:47 -05:00
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^
= note: `#[deny(clippy::test_lint)]` implied by `#[deny(clippy::group)]`
2018-08-27 16:22:47 -05:00
error: item is named 'lintmetoo'
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:23:5
2018-08-27 16:22:47 -05:00
|
2019-03-09 06:03:44 -06:00
LL | fn lintmetoo() { }
2018-08-27 16:22:47 -05:00
| ^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2019-10-03 02:33:28 -05:00
--> $DIR/lint-tool-test.rs:12:9
2018-08-27 16:22:47 -05:00
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^
= note: `#[deny(clippy::test_group)]` implied by `#[deny(clippy::group)]`
2018-08-27 16:22:47 -05:00
error: aborting due to 2 previous errors