rust/tests/ui/patterns.stderr
2017-02-07 21:05:30 +01:00

16 lines
405 B
Plaintext

error: the `y @ _` pattern can be written as just `y`
--> $DIR/patterns.rs:10:9
|
10 | y @ _ => (), //~ERROR the `y @ _` pattern can be written as just `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