]> git.lizzy.rs Git - rust.git/blob - tests/ui/or_then_unwrap.stderr
feat: make fixable
[rust.git] / tests / ui / or_then_unwrap.stderr
1 error: .or(Some(…)).unwrap() found
2   --> $DIR/or_then_unwrap.rs:24:20
3    |
4 LL |     let _ = option.or(Some("fallback")).unwrap(); // should trigger lint
5    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or("fallback")`
6    |
7    = note: `-D clippy::or-then-unwrap` implied by `-D warnings`
8
9 error: .or(Ok(…)).unwrap() found
10   --> $DIR/or_then_unwrap.rs:27:20
11    |
12 LL |     let _ = result.or::<&str>(Ok("fallback")).unwrap(); // should trigger lint
13    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or("fallback")`
14
15 error: aborting due to 2 previous errors
16