futuretest/cargo.out

24 lines
817 B
Plaintext

2017-12-24 18:32:27 -06:00
Compiling futuretest v0.1.0 (file:///mnt/d/GIT/futuretest)
error[E0308]: match arms have incompatible types
--> src/main.rs:21:13
2017-12-09 12:58:25 -06:00
|
2017-12-24 18:32:27 -06:00
21 | / match err {
22 | | ErrorCode::Case1 => case1(),
23 | | ErrorCode::Case2 => case2(),
24 | | }
| |_____________^ expected anonymized type, found a different anonymized type
2017-12-09 12:58:25 -06:00
|
2017-12-24 18:32:27 -06:00
= note: expected type `impl futures::Future` (anonymized type)
found type `impl futures::Future` (anonymized type)
note: match arm with an incompatible type
--> src/main.rs:23:37
|
23 | ErrorCode::Case2 => case2(),
| ^^^^^^^
2017-12-09 12:58:25 -06:00
2017-12-13 09:34:46 -06:00
error: aborting due to previous error
2017-12-09 12:58:25 -06:00
error: Could not compile `futuretest`.
To learn more, run the command again with --verbose.