rust/src/test/ui-fulldeps/lint_tool_test.stderr

57 lines
1.9 KiB
Plaintext
Raw Normal View History

2018-08-29 22:12:47 +00: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
2018-08-27 21:22:47 +00:00
--> $DIR/lint_tool_test.rs:17:9
|
2018-08-27 21:22:47 +00:00
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
|
= note: #[warn(renamed_and_removed_lints)] on by default
2018-08-29 22:12:47 +00:00
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
--> $DIR/lint_tool_test.rs:32:9
2018-08-27 21:22:47 +00:00
|
LL | #[allow(test_group)]
| ^^^^^^^^^^ help: change it to: `clippy::test_group`
warning: unknown lint: `this_lint_does_not_exist`
2018-08-29 22:12:47 +00:00
--> $DIR/lint_tool_test.rs:34:8
2018-08-27 21:22:47 +00:00
|
LL | #[deny(this_lint_does_not_exist)] //~ WARNING unknown lint: `this_lint_does_not_exist`
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[warn(unknown_lints)] on by default
2018-08-29 22:12:47 +00: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
2018-08-27 21:22:47 +00:00
--> $DIR/lint_tool_test.rs:17:9
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^ help: change it to: `clippy::group`
error: item is named 'lintme'
2018-08-29 22:12:47 +00:00
--> $DIR/lint_tool_test.rs:21:1
2018-08-27 21:22:47 +00:00
|
LL | fn lintme() { } //~ ERROR item is named 'lintme'
| ^^^^^^^^^^^^^^^
|
2018-08-27 21:22:47 +00:00
note: lint level defined here
--> $DIR/lint_tool_test.rs:17:9
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^
= note: #[deny(clippy::test_lint)] implied by #[deny(clippy::group)]
error: item is named 'lintmetoo'
2018-08-29 22:12:47 +00:00
--> $DIR/lint_tool_test.rs:29:5
2018-08-27 21:22:47 +00:00
|
LL | fn lintmetoo() { } //~ ERROR item is named 'lintmetoo'
| ^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/lint_tool_test.rs:17:9
|
LL | #![deny(clippy_group)]
| ^^^^^^^^^^^^
= note: #[deny(clippy::test_group)] implied by #[deny(clippy::group)]
error: aborting due to 2 previous errors