2017-05-17 12:19:44 +00:00
|
|
|
error: the `y @ _` pattern can be written as just `y`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/patterns.rs:14: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern)]`
|
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`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/patterns.rs:29: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`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/patterns.rs:37: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
|
|
|
|