]> git.proxmox.com Git - rustc.git/blame - tests/ui/async-await/issues/non-async-enclosing-span.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / async-await / issues / non-async-enclosing-span.stderr
CommitLineData
e1599b0c 1error[E0728]: `await` is only allowed inside `async` functions and blocks
49aad941 2 --> $DIR/non-async-enclosing-span.rs:9:28
e1599b0c
XL
3 |
4LL | fn main() {
5 | ---- this is not `async`
6LL | let x = move || {};
7LL | let y = do_the_thing().await;
49aad941 8 | ^^^^^ only allowed inside `async` functions and blocks
e1599b0c 9
4b012472 10error: aborting due to 1 previous error
e1599b0c 11
e74abb32 12For more information about this error, try `rustc --explain E0728`.