rust/tests/ui/match_ref_pats.stderr

69 lines
2 KiB
Text
Raw Normal View History

error: you don't need to add `&` to all patterns
2021-10-04 08:33:40 +02:00
--> $DIR/match_ref_pats.rs:7:9
|
LL | / match v {
LL | | &Some(v) => println!("{:?}", v),
LL | | &None => println!("none"),
LL | | }
| |_________^
|
= note: `-D clippy::match-ref-pats` implied by `-D warnings`
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
2021-08-11 16:21:33 +02:00
LL ~ match *v {
LL ~ Some(v) => println!("{:?}", v),
LL ~ None => println!("none"),
|
error: you don't need to add `&` to both the expression and the patterns
2021-10-04 08:33:40 +02:00
--> $DIR/match_ref_pats.rs:24:5
|
LL | / match &w {
LL | | &Some(v) => println!("{:?}", v),
LL | | &None => println!("none"),
LL | | }
| |_____^
2019-10-26 21:53:42 +02:00
|
help: try
|
2021-08-11 16:21:33 +02:00
LL ~ match w {
LL ~ Some(v) => println!("{:?}", v),
LL ~ None => println!("none"),
|
error: redundant pattern matching, consider using `is_none()`
2021-10-04 08:33:40 +02:00
--> $DIR/match_ref_pats.rs:36:12
|
LL | if let &None = a {
| -------^^^^^---- help: try this: `if a.is_none()`
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
error: redundant pattern matching, consider using `is_none()`
2021-10-04 08:33:40 +02:00
--> $DIR/match_ref_pats.rs:41:12
|
LL | if let &None = &b {
| -------^^^^^----- help: try this: `if b.is_none()`
2021-10-10 11:16:28 +02:00
error: you don't need to add `&` to all patterns
--> $DIR/match_ref_pats.rs:101:9
|
LL | / match foobar_variant!(0) {
LL | | &FooBar::Foo => println!("Foo"),
LL | | &FooBar::Bar => println!("Bar"),
LL | | &FooBar::FooBar => println!("FooBar"),
LL | | _ => println!("Wild"),
LL | | }
| |_________^
|
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
LL ~ match *foobar_variant!(0) {
LL ~ FooBar::Foo => println!("Foo"),
LL ~ FooBar::Bar => println!("Bar"),
LL ~ FooBar::FooBar => println!("FooBar"),
|
error: aborting due to 5 previous errors