summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-101715.stderr
blob: f6af15c00d6210d8bc416828a85a13010b60b6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0277]: `()` is not a future
  --> $DIR/issue-101715.rs:11:10
   |
LL |         .await
   |         -^^^^^
   |         ||
   |         |`()` is not a future
   |         help: remove the `.await`
   |
   = help: the trait `Future` is not implemented for `()`
   = note: () must be a future or must implement `IntoFuture` to be awaited
   = note: required for `()` to implement `IntoFuture`

error: aborting due to 1 previous error

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