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