mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
15 lines
348 B
Text
15 lines
348 B
Text
error: the `y @ _` pattern can be written as just `y`
|
|
--> $DIR/patterns.rs:10:9
|
|
|
|
|
10 | y @ _ => (),
|
|
| ^^^^^
|
|
|
|
|
= note: #[deny(redundant_pattern)] implied by #[deny(clippy)]
|
|
note: lint level defined here
|
|
--> $DIR/patterns.rs:4:9
|
|
|
|
|
4 | #![deny(clippy)]
|
|
| ^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|