]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/issue-72766.stderr
Add warning when whitespace is not skipped after an escaped newline.
[rust.git] / src / test / ui / suggestions / issue-72766.stderr
1 error[E0277]: the `?` operator can only be applied to values that implement `Try`
2   --> $DIR/issue-72766.rs:14:5
3    |
4 LL |     SadGirl {}.call()?;
5    |     ^^^^^^^^^^^^^^^^^^ the `?` operator cannot be applied to type `impl Future`
6    |
7    = help: the trait `Try` is not implemented for `impl Future`
8 note: required by `branch`
9   --> $SRC_DIR/core/src/ops/try_trait.rs:LL:COL
10    |
11 LL |     fn branch(self) -> ControlFlow<Self::Residual, Self::Output>;
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13 help: consider `await`ing on the `Future`
14    |
15 LL |     SadGirl {}.call().await?;
16    |                      ^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.