summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/ok_expect.stderr
blob: ac2b6dcc83b52ba2b3505373d746db1568c6c744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
error: called `ok().expect()` on a `Result` value
  --> $DIR/ok_expect.rs:16:5
   |
LL |     res.ok().expect("disaster!");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: you can call `expect()` directly on the `Result`
   = note: `-D clippy::ok-expect` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::ok_expect)]`

error: called `ok().expect()` on a `Result` value
  --> $DIR/ok_expect.rs:23:5
   |
LL |     res3.ok().expect("whoof");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: you can call `expect()` directly on the `Result`

error: called `ok().expect()` on a `Result` value
  --> $DIR/ok_expect.rs:26:5
   |
LL |     res4.ok().expect("argh");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: you can call `expect()` directly on the `Result`

error: called `ok().expect()` on a `Result` value
  --> $DIR/ok_expect.rs:29:5
   |
LL |     res5.ok().expect("oops");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: you can call `expect()` directly on the `Result`

error: called `ok().expect()` on a `Result` value
  --> $DIR/ok_expect.rs:32:5
   |
LL |     res6.ok().expect("meh");
   |     ^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: you can call `expect()` directly on the `Result`

error: aborting due to 5 previous errors