]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/issue-72766.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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 | ^^^^^^^^^^^^^^^^^^
6 | |
7 | the `?` operator cannot be applied to type `impl Future`
8 | help: consider using `.await` here: `SadGirl {}.call().await?`
9 |
10 = help: the trait `Try` is not implemented for `impl Future`
11 = note: required by `into_result`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.