mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
b2c4f09d77
slice_patterns have been stabilized.
10 lines
259 B
Text
10 lines
259 B
Text
error: the `y @ _` pattern can be written as just `y`
|
|
--> $DIR/patterns.rs:10:9
|
|
|
|
|
LL | y @ _ => (),
|
|
| ^^^^^ help: try: `y`
|
|
|
|
|
= note: `-D clippy::redundant-pattern` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|