2020-04-01 00:41:40 +02: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 10:30:47 -07:00
|
|
|
//~| error: `()` is not a future
|
2020-04-01 00:41:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|