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