rust-clippy/tests/ui/patterns.stderr

11 lines
259 B
Text
Raw Normal View History

error: the `y @ _` pattern can be written as just `y`
2019-09-02 19:49:14 +00:00
--> $DIR/patterns.rs:10:9
|
2018-12-27 15:57:55 +00:00
LL | y @ _ => (),
2019-09-04 15:50:22 +00:00
| ^^^^^ help: try: `y`
|
= note: `-D clippy::redundant-pattern` implied by `-D warnings`
2018-01-16 16:06:27 +00:00
error: aborting due to previous error