blob: 87fb243b65efd7e10814f8dafbd39e848a592998 [file] [log] [blame]
error: type of pattern does not match the expression type
--> $DIR/mutability.rs:9:9
|
LL | Some(_) => (),
| ^^^^^^^
|
= help: use `*` to dereference the match expression or explicitly match against a `&_` pattern and adjust the enclosed variable bindings
= note: `-D clippy::pattern-type-mismatch` implied by `-D warnings`
error: type of pattern does not match the expression type
--> $DIR/mutability.rs:15:9
|
LL | Some(_) => (),
| ^^^^^^^
|
= help: use `*` to dereference the match expression or explicitly match against a `&mut _` pattern and adjust the enclosed variable bindings
error: aborting due to 2 previous errors