Corrected error output

rust-46644
Mahmoud Al-Qudsi 2017-12-10 15:53:33 -06:00
parent 9ec63c8b6a
commit 005530355c
1 changed files with 9 additions and 5 deletions

@ -1,9 +1,13 @@
Compiling futuretest v0.1.0 (file:///mnt/d/GIT/futuretest)
error[E0554]: #![feature] may not be used on the stable release channel
--> src/main.rs:1:1
|
1 | #![feature(conservative_impl_trait)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0271]: type mismatch resolving `<futures::FutureResult<std::result::Result<(), _>, ()> as futures::Future>::Item == ()`
--> src/main.rs:17:23
|
17 | fn create_future() -> impl Future<Item=(), Error=()> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `std::result::Result`, found ()
|
= note: expected type `std::result::Result<(), _>`
found type `()`
= note: the return type of a function must have a statically known size
error: aborting due to previous error