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