1
Fork 0

Bless tests.

This commit is contained in:
Camille GILLOT 2023-06-24 10:02:54 +00:00
parent 286502c9ed
commit 211d2ed07b
110 changed files with 483 additions and 915 deletions

View file

@ -7,19 +7,18 @@ LL | fn get_future() -> impl Future<Output = ()> {
= help: the trait `Future` is not implemented for `()`
= 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
error[E0282]: type annotations needed
--> $DIR/async-error-span.rs:13: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:18
help: consider giving `a` an explicit type
|
LL | get_future().await;
| ^^^^^
LL | let a: /* Type */;
| ++++++++++++
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0277, E0698.
Some errors have detailed explanations: E0277, E0282.
For more information about an error, try `rustc --explain E0277`.