2019-07-01 21:12:29 -05:00
|
|
|
// edition:2018
|
|
|
|
|
2019-08-01 20:45:58 -05:00
|
|
|
#![feature(async_closure)]
|
2019-07-01 21:12:29 -05:00
|
|
|
|
|
|
|
async fn print_dur() {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
(async || 2333)().await;
|
|
|
|
//~^ ERROR `await` is only allowed inside `async` functions and blocks
|
|
|
|
}
|