]> git.lizzy.rs Git - rust.git/blob - tests/ui/unwrap.stderr
Addition `manual_map` test for `unsafe` blocks
[rust.git] / tests / ui / unwrap.stderr
1 error: used `unwrap()` on `an Option` value
2   --> $DIR/unwrap.rs:5:13
3    |
4 LL |     let _ = opt.unwrap();
5    |             ^^^^^^^^^^^^
6    |
7    = note: `-D clippy::unwrap-used` implied by `-D warnings`
8    = help: if you don't want to handle the `None` case gracefully, consider using `expect()` to provide a better panic message
9
10 error: used `unwrap()` on `a Result` value
11   --> $DIR/unwrap.rs:10:13
12    |
13 LL |     let _ = res.unwrap();
14    |             ^^^^^^^^^^^^
15    |
16    = help: if you don't want to handle the `Err` case gracefully, consider using `expect()` to provide a better panic message
17
18 error: aborting due to 2 previous errors
19