]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unwrap.stderr
Auto merge of #84620 - Dylan-DPC:rollup-wkv97im, r=Dylan-DPC
[rust.git] / src / tools / clippy / 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