]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/issues/issue-51751.stderr
Rollup merge of #71627 - ldm0:autoderefarg, r=Dylan-DPC
[rust.git] / src / test / ui / async-await / issues / issue-51751.stderr
1 error[E0728]: `await` is only allowed inside `async` functions and blocks
2   --> $DIR/issue-51751.rs:9:20
3    |
4 LL | fn main() {
5    |    ---- this is not `async`
6 LL |     let result = inc(10000);
7 LL |     let finished = result.await;
8    |                    ^^^^^^^^^^^^ only allowed inside `async` functions and blocks
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0728`.