2017-10-10 07:03:39 +02:00
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/ok_expect.rs:24:5
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
24 | res.ok().expect("disaster!");
|
2017-10-10 07:03:39 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::ok-expect` implied by `-D warnings`
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/ok_expect.rs:30:5
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
30 | res3.ok().expect("whoof");
|
2017-10-10 07:03:39 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/ok_expect.rs:32:5
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
32 | res4.ok().expect("argh");
|
2017-10-10 07:03:39 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/ok_expect.rs:34:5
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
34 | res5.ok().expect("oops");
|
2017-10-10 07:03:39 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/ok_expect.rs:36:5
|
2017-10-10 07:03:39 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
36 | res6.ok().expect("meh");
|
2017-10-10 07:03:39 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|