]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/async-error-span.stderr
Implement a lint that highlights all moves larger than 1000 bytes
[rust.git] / src / test / ui / async-await / async-error-span.stderr
1 error[E0277]: `()` is not a future
2   --> $DIR/async-error-span.rs:7:20
3    |
4 LL | fn get_future() -> impl Future<Output = ()> {
5    |                    ^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not a future
6    |
7    = help: the trait `Future` is not implemented for `()`
8
9 error[E0698]: type inside `async fn` body must be known in this context
10   --> $DIR/async-error-span.rs:13:9
11    |
12 LL |     let a;
13    |         ^ cannot infer type
14    |
15 note: the type is part of the `async fn` body because of this `await`
16   --> $DIR/async-error-span.rs:14:5
17    |
18 LL |     get_future().await;
19    |     ^^^^^^^^^^^^^^^^^^
20
21 error: aborting due to 2 previous errors
22
23 Some errors have detailed explanations: E0277, E0698.
24 For more information about an error, try `rustc --explain E0277`.