2022-10-01 10:19:31 +00:00
|
|
|
error[E0277]: `()` is not a future
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/async-error-span.rs:7:20
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
|
|
|
LL | fn get_future() -> impl Future<Output = ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not a future
|
|
|
|
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`
|
|
|
|
|
2023-06-24 10:02:54 +00:00
|
|
|
error[E0282]: type annotations needed
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/async-error-span.rs:13:9
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
|
|
|
LL | let a;
|
2023-06-24 10:02:54 +00:00
|
|
|
| ^
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
2023-06-24 10:02:54 +00:00
|
|
|
help: consider giving `a` an explicit type
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
2023-06-24 10:02:54 +00:00
|
|
|
LL | let a: /* Type */;
|
|
|
|
| ++++++++++++
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2023-06-24 10:02:54 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0282.
|
2022-10-01 10:19:31 +00:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|