2020-01-24 08:04:46 +00:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ok_expect.rs:16: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
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-25 22:01:16 +00:00
|
|
|
= help: you can call `expect()` directly on the `Result`
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::ok-expect` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::ok_expect)]`
|
2017-10-10 05:03:39 +00:00
|
|
|
|
2020-01-24 08:04:46 +00:00
|
|
|
error: called `ok().expect()` on a `Result` value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ok_expect.rs:23: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ok_expect.rs:26: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ok_expect.rs:29: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ok_expect.rs:32: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
|
|
|
|
|