2017-02-07 21:05:30 +01:00
|
|
|
error: Matching on `Some` with `ok()` is redundant
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/ok_if_let.rs:7:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-04-23 15:25:22 +02:00
|
|
|
7 | / if let Some(y) = x.parse().ok() {
|
2017-05-11 16:30:21 +02:00
|
|
|
8 | | y
|
|
|
|
9 | | } else {
|
|
|
|
10 | | 0
|
|
|
|
11 | | }
|
2017-04-23 15:25:22 +02:00
|
|
|
| |_____^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
= note: `-D if-let-some-result` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
= help: Consider matching on `Ok(y)` and removing the call to `ok` instead
|
|
|
|
|