2019-08-13 06:56:13 +00:00
|
|
|
error[E0728]: `await` is only allowed inside `async` functions and blocks
|
2023-04-25 18:59:16 +00:00
|
|
|
--> $DIR/non-async-enclosing-span.rs:9:28
|
2019-08-13 06:56:13 +00:00
|
|
|
|
|
|
|
|
LL | fn main() {
|
2024-04-11 13:15:34 +00:00
|
|
|
| --------- this is not `async`
|
2019-08-13 06:56:13 +00:00
|
|
|
LL | let x = move || {};
|
|
|
|
LL | let y = do_the_thing().await;
|
2023-04-25 18:59:16 +00:00
|
|
|
| ^^^^^ only allowed inside `async` functions and blocks
|
2019-08-13 06:56:13 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-08-13 06:56:13 +00:00
|
|
|
|
2019-10-21 23:48:01 +00:00
|
|
|
For more information about this error, try `rustc --explain E0728`.
|