summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/coerce-result-return-value.stderr
blob: adec2f612ae0eb0e9db7baca9dc2736fa3d0a927 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value.rs:8:5
   |
LL | fn foo1(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
LL |     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 |     Ok(x?)
   |     +++ ++

error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value.rs:11:12
   |
LL | fn foo2(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
LL |     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 |     return Ok(x?);
   |            +++ ++

error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value.rs:15:9
   |
LL | fn foo3(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
LL |     if true {
LL |         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 |         Ok(x?)
   |         +++ ++

error[E0308]: mismatched types
  --> $DIR/coerce-result-return-value.rs:17:9
   |
LL | fn foo3(x: Result<(), A>) -> Result<(), B> {
   |                              ------------- expected `Result<(), B>` because of return type
...
LL |         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 |         Ok(x?)
   |         +++ ++

error: aborting due to 4 previous errors

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