2017-05-17 12:19:44 +00:00
|
|
|
error: the `y @ _` pattern can be written as just `y`
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/patterns.rs:11:9
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | y @ _ => (),
|
2019-09-04 15:50:22 +00:00
|
|
|
| ^^^^^ help: try: `y`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::redundant-pattern` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2020-03-08 09:00:23 +00:00
|
|
|
error: the `x @ _` pattern can be written as just `x`
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/patterns.rs:26:9
|
2020-03-08 09:00:23 +00:00
|
|
|
|
|
|
|
|
LL | ref mut x @ _ => {
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `ref mut x`
|
|
|
|
|
|
|
|
error: the `x @ _` pattern can be written as just `x`
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/patterns.rs:34:9
|
2020-03-08 09:00:23 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
|