summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unwrap.stderr
blob: 41db819f6fb75b4e21004d792b71811b09907248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
error: used `unwrap()` on an `Option` value
  --> $DIR/unwrap.rs:6:13
   |
LL |     let _ = opt.unwrap();
   |             ^^^^^^^^^^^^
   |
   = note: if this value is `None`, it will panic
   = help: consider using `expect()` to provide a better panic message
   = note: `-D clippy::unwrap-used` implied by `-D warnings`

error: used `unwrap()` on a `Result` value
  --> $DIR/unwrap.rs:11:13
   |
LL |     let _ = res.unwrap();
   |             ^^^^^^^^^^^^
   |
   = note: if this value is an `Err`, it will panic
   = help: consider using `expect()` to provide a better panic message

error: used `unwrap_err()` on a `Result` value
  --> $DIR/unwrap.rs:12:13
   |
LL |     let _ = res.unwrap_err();
   |             ^^^^^^^^^^^^^^^^
   |
   = note: if this value is an `Ok`, it will panic
   = help: consider using `expect_err()` to provide a better panic message

error: aborting due to 3 previous errors