2020-03-31 17:41:40 -05:00
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
async fn fun() {
|
|
|
|
[1; ().await];
|
|
|
|
//~^ error: `await` is only allowed inside `async` functions and blocks
|
|
|
|
//~| error: `.await` is not allowed in a `const`
|
|
|
|
//~| error: `.await` is not allowed in a `const`
|
2020-06-18 12:30:47 -05:00
|
|
|
//~| error: `()` is not a future
|
2020-03-31 17:41:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|