rust/tests/ui/or_then_unwrap.stderr

23 lines
904 B
Plaintext
Raw Normal View History

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