]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issues/issue-83919.stderr
Rollup merge of #103117 - joshtriplett:use-is-terminal, r=eholk
[rust.git] / src / test / ui / impl-trait / issues / issue-83919.stderr
1 error[E0277]: `{integer}` is not a future
2   --> $DIR/issue-83919.rs:21:26
3    |
4 LL |     fn get_fut(&self) -> Self::Fut {
5    |                          ^^^^^^^^^ `{integer}` is not a future
6    |
7    = help: the trait `Future` is not implemented for `{integer}`
8    = note: {integer} must be a future or must implement `IntoFuture` to be awaited
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.