summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/coerce-result-return-value-2.stderr
blob: b2c409e07b8c770f8e8a4ca7a256d97bd115bea1 (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
45
46
47
error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value-2.rs:8:17
   |
LL | fn foo4(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
LL |     match true {
LL |         true => x,
   |                 ^ expected `Result<(), B>`, found `Result<(), A>`
   |
   = note: expected enum `Result<_, B>`
              found enum `Result<_, A>`
help: use `?` to coerce and return an appropriate `Err`, and wrap the resulting value in `Ok` so the expression remains of type `Result`
   |
LL |         true => Ok(x?),
   |                 +++ ++

error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value-2.rs:14:24
   |
LL | fn foo5(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
LL |     match true {
LL |         true => return x,
   |                        ^ expected `Result<(), B>`, found `Result<(), A>`
   |
   = note: expected enum `Result<_, B>`
              found enum `Result<_, A>`
help: use `?` to coerce and return an appropriate `Err`, and wrap the resulting value in `Ok` so the expression remains of type `Result`
   |
LL |         true => return Ok(x?),
   |                        +++ ++

error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value-2.rs:21:28
   |
LL |       let _: Result<(), B> = {
   |  ____________________________^
LL | |         Err(A);
LL | |     };
   | |_____^ expected `Result<(), B>`, found `()`
   |
   = note:   expected enum `Result<(), B>`
           found unit type `()`

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0308`.