rust-clippy/tests/ui/patterns.stderr

23 lines
614 B
Text
Raw Normal View History

error: the `y @ _` pattern can be written as just `y`
--> $DIR/patterns.rs:11: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`
error: the `x @ _` pattern can be written as just `x`
--> $DIR/patterns.rs:26:9
|
LL | ref mut x @ _ => {
| ^^^^^^^^^^^^^ help: try: `ref mut x`
error: the `x @ _` pattern can be written as just `x`
--> $DIR/patterns.rs:34:9
|
LL | ref x @ _ => println!("vec: {:?}", x),
| ^^^^^^^^^ help: try: `ref x`
error: aborting due to 3 previous errors
2018-01-16 16:06:27 +00:00