1
Fork 0

Test the 3 generator handling versions for generator/async tests.

This commit is contained in:
Camille GILLOT 2022-10-01 12:19:31 +02:00
parent a20078f044
commit 9259da51ed
179 changed files with 5816 additions and 196 deletions

View file

@ -1,5 +1,5 @@
error[E0277]: `()` is not a future
--> $DIR/async-error-span.rs:7:20
--> $DIR/async-error-span.rs:10:20
|
LL | fn get_future() -> impl Future<Output = ()> {
| ^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not a future
@ -8,13 +8,13 @@ LL | fn get_future() -> impl Future<Output = ()> {
= note: () must be a future or must implement `IntoFuture` to be awaited
error[E0698]: type inside `async fn` body must be known in this context
--> $DIR/async-error-span.rs:13:9
--> $DIR/async-error-span.rs:16:9
|
LL | let a;
| ^ cannot infer type
|
note: the type is part of the `async fn` body because of this `await`
--> $DIR/async-error-span.rs:14:17
--> $DIR/async-error-span.rs:17:17
|
LL | get_future().await;
| ^^^^^^