1
Fork 0

Bless tests.

This commit is contained in:
Camille GILLOT 2023-01-26 03:51:26 +00:00
parent 60e04d1e8c
commit 0e52a671d4
86 changed files with 644 additions and 1694 deletions

View file

@ -13,7 +13,9 @@ 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;
//[no_drop_tracking,drop_tracking]~^ ERROR type inside `async fn` body must be known in this context
//[drop_tracking_mir]~^^ ERROR type annotations needed
get_future().await;
}