rust-clippy/tests/ui/patterns.stderr
2019-09-05 22:45:52 +09:00

10 lines
259 B
Text

error: the `y @ _` pattern can be written as just `y`
--> $DIR/patterns.rs:11:9
|
LL | y @ _ => (),
| ^^^^^ help: try: `y`
|
= note: `-D clippy::redundant-pattern` implied by `-D warnings`
error: aborting due to previous error