rust/tests/ui/async-await/async-error-span.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
482 B
Rust
Raw Normal View History

// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
// edition:2018
2019-08-02 01:45:58 +00:00
// Regression test for issue #62382.
use std::future::Future;
fn get_future() -> impl Future<Output = ()> {
//~^ ERROR `()` is not a future
panic!()
}
async fn foo() {
2019-10-02 18:39:44 +00:00
let a; //~ ERROR type inside `async fn` body must be known in this context
get_future().await;
}
fn main() {}