rust-clippy/tests/ui/match_ref_pats.stderr

71 lines
2.2 KiB
Text
Raw Normal View History

error: you don't need to add `&` to all patterns
--> tests/ui/match_ref_pats.rs:8: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: to override `-D warnings` add `#[allow(clippy::match_ref_pats)]`
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
2021-08-11 14:21:33 +00: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
--> tests/ui/match_ref_pats.rs:25:5
|
LL | / match &w {
LL | | &Some(v) => println!("{:?}", v),
LL | | &None => println!("none"),
LL | | }
| |_____^
2019-10-26 19:53:42 +00:00
|
help: try
|
2021-08-11 14:21:33 +00:00
LL ~ match w {
LL ~ Some(v) => println!("{:?}", v),
LL ~ None => println!("none"),
|
error: redundant pattern matching, consider using `is_none()`
--> tests/ui/match_ref_pats.rs:37:12
|
LL | if let &None = a {
| -------^^^^^---- help: try: `if a.is_none()`
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`
error: redundant pattern matching, consider using `is_none()`
--> tests/ui/match_ref_pats.rs:42:12
|
LL | if let &None = &b {
| -------^^^^^----- help: try: `if b.is_none()`
error: you don't need to add `&` to all patterns
--> tests/ui/match_ref_pats.rs:102: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 | | }
| |_________^
2019-10-26 19:53:42 +00:00
|
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