summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issues/issue-62009-1.stderr
blob: 02933f4f2f233c1604f9952396a9ef412fead1f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error[E0728]: `await` is only allowed inside `async` functions and blocks
  --> $DIR/issue-62009-1.rs:6:23
   |
LL | fn main() {
   |    ---- this is not `async`
LL |     async { let (); }.await;
   |                       ^^^^^ only allowed inside `async` functions and blocks

error[E0728]: `await` is only allowed inside `async` functions and blocks
  --> $DIR/issue-62009-1.rs:10:7
   |
LL | fn main() {
   |    ---- this is not `async`
...
LL |     }.await;
   |       ^^^^^ only allowed inside `async` functions and blocks

error[E0728]: `await` is only allowed inside `async` functions and blocks
  --> $DIR/issue-62009-1.rs:12:16
   |
LL | fn main() {
   |    ---- this is not `async`
...
LL |     (|_| 2333).await;
   |                ^^^^^ only allowed inside `async` functions and blocks

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0728`.