2022-03-24 08:50:04 -05:00
|
|
|
error: found `.or(Some(…)).unwrap()`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/or_then_unwrap.rs:22:20
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
|
LL | let _ = option.or(Some("fallback")).unwrap(); // should trigger lint
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or("fallback")`
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::or-then-unwrap` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: found `.or(Ok(…)).unwrap()`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/or_then_unwrap.rs:25:20
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
|
LL | let _ = result.or::<&str>(Ok("fallback")).unwrap(); // should trigger lint
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or("fallback")`
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
error: found `.or(Some(…)).unwrap()`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/or_then_unwrap.rs:29:31
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
|
LL | let _ = option.map(|v| v).or(Some("fallback")).unwrap().to_string().chars(); // should trigger lint
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or("fallback")`
|
2022-03-24 08:50:04 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|