rust/tests/ui/unwrap.stderr

28 lines
923 B
Plaintext
Raw Normal View History

2020-01-24 02:04:46 -06:00
error: used `unwrap()` on `an Option` value
2019-10-16 12:43:26 -05:00
--> $DIR/unwrap.rs:5:13
|
LL | let _ = opt.unwrap();
| ^^^^^^^^^^^^
|
= note: `-D clippy::unwrap-used` implied by `-D warnings`
2020-01-25 16:01:16 -06:00
= help: if you don't want to handle the `None` case gracefully, consider using `expect()` to provide a better panic message
2019-10-16 12:43:26 -05:00
2020-01-24 02:04:46 -06:00
error: used `unwrap()` on `a Result` value
2019-10-16 12:43:26 -05:00
--> $DIR/unwrap.rs:10:13
|
LL | let _ = res.unwrap();
| ^^^^^^^^^^^^
|
2020-01-25 16:01:16 -06:00
= help: if you don't want to handle the `Err` case gracefully, consider using `expect()` to provide a better panic message
2019-10-16 12:43:26 -05:00
error: used `unwrap_err()` on `a Result` value
--> $DIR/unwrap.rs:11:13
|
LL | let _ = res.unwrap_err();
| ^^^^^^^^^^^^^^^^
|
= help: if you don't want to handle the `Ok` case gracefully, consider using `expect_err()` to provide a better panic message
error: aborting due to 3 previous errors
2019-10-16 12:43:26 -05:00