2020-01-24 02:04:46 -06:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/ok_expect.rs:14:5
|
2017-10-10 00:03:39 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | res.ok().expect("disaster!");
|
2017-10-10 00:03:39 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-25 16:01:16 -06:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::ok-expect` implied by `-D warnings`
|
2017-10-10 00:03:39 -05:00
|
|
|
|
2020-01-24 02:04:46 -06:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/ok_expect.rs:20:5
|
2017-10-10 00:03:39 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | res3.ok().expect("whoof");
|
2017-10-10 00:03:39 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-24 02:04:46 -06:00
|
|
|
|
|
2020-01-25 16:01:16 -06:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2017-10-10 00:03:39 -05:00
|
|
|
|
2020-01-24 02:04:46 -06:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/ok_expect.rs:22:5
|
2017-10-10 00:03:39 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | res4.ok().expect("argh");
|
2017-10-10 00:03:39 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-24 02:04:46 -06:00
|
|
|
|
|
2020-01-25 16:01:16 -06:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2017-10-10 00:03:39 -05:00
|
|
|
|
2020-01-24 02:04:46 -06:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/ok_expect.rs:24:5
|
2017-10-10 00:03:39 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | res5.ok().expect("oops");
|
2017-10-10 00:03:39 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-24 02:04:46 -06:00
|
|
|
|
|
2020-01-25 16:01:16 -06:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2017-10-10 00:03:39 -05:00
|
|
|
|
2020-01-24 02:04:46 -06:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/ok_expect.rs:26:5
|
2017-10-10 00:03:39 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | res6.ok().expect("meh");
|
2017-10-10 00:03:39 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-24 02:04:46 -06:00
|
|
|
|
|
2020-01-25 16:01:16 -06:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2017-10-10 00:03:39 -05:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|