]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/issues/non-async-enclosing-span.stderr
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / async-await / issues / non-async-enclosing-span.stderr
CommitLineData
e1599b0c
XL
1error[E0728]: `await` is only allowed inside `async` functions and blocks
2 --> $DIR/non-async-enclosing-span.rs:9:13
3 |
4LL | fn main() {
5 | ---- this is not `async`
6LL | let x = move || {};
7LL | let y = do_the_thing().await;
8 | ^^^^^^^^^^^^^^^^^^^^ only allowed inside `async` functions and blocks
9
10error: aborting due to previous error
11