]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/suggest-missing-await.stderr
Add note to src/ci/docker/README.md about multiple docker images
[rust.git] / src / test / ui / async-await / suggest-missing-await.stderr
1 error[E0308]: mismatched types
2   --> $DIR/suggest-missing-await.rs:13:14
3    |
4 LL |     take_u32(x)
5    |              ^
6    |              |
7    |              expected `u32`, found opaque type
8    |              help: consider using `.await` here: `x.await`
9    |
10    = note:     expected type `u32`
11            found opaque type `impl std::future::Future`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.