mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
|
--> $DIR/ok_expect.rs:14:5
|
|
|
|
|
LL | res.ok().expect("disaster!");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::ok-expect` implied by `-D warnings`
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
|
--> $DIR/ok_expect.rs:20:5
|
|
|
|
|
LL | res3.ok().expect("whoof");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
|
--> $DIR/ok_expect.rs:22:5
|
|
|
|
|
LL | res4.ok().expect("argh");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
|
--> $DIR/ok_expect.rs:24:5
|
|
|
|
|
LL | res5.ok().expect("oops");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`
|
|
--> $DIR/ok_expect.rs:26:5
|
|
|
|
|
LL | res6.ok().expect("meh");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|