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

@ -10,7 +10,7 @@ fn get_future() -> impl Future<Output = ()> {
}
async fn foo() {
let a; //~ ERROR type inside `async fn` body must be known in this context
let a; //~ ERROR type annotations needed
get_future().await;
}