rust/tests/ui/rename.stderr

37 lines
1.1 KiB
Text
Raw Normal View History

2018-12-17 13:59:09 +01:00
error: unknown lint: `stutter`
--> $DIR/rename.rs:1:10
2018-12-17 13:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | #![allow(stutter)]
2018-12-17 13:59:09 +01:00
| ^^^^^^^
|
= note: `-D unknown-lints` implied by `-D warnings`
2018-12-17 14:29:19 +01:00
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
--> $DIR/rename.rs:3:8
2018-12-17 13:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | #[warn(clippy::stutter)]
2018-12-17 14:29:19 +01:00
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
2018-12-17 13:59:09 +01:00
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
error: lint `clippy::new_without_default_derive` has been renamed to `clippy::new_without_default`
--> $DIR/rename.rs:6:8
|
LL | #[warn(clippy::new_without_default_derive)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::new_without_default`
2019-01-27 13:46:22 +01:00
error: unknown lint: `stutter`
--> $DIR/rename.rs:1:10
|
LL | #![allow(stutter)]
| ^^^^^^^
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
--> $DIR/rename.rs:3:8
|
LL | #[warn(clippy::stutter)]
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
error: aborting due to 5 previous errors
2018-12-17 13:59:09 +01:00