mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
6efddac288
Expand the primary span of E0277 when the immediate unmet bound is not what the user wrote: ``` error[E0277]: the trait bound `i32: Bar` is not satisfied --> f100.rs:6:6 | 6 | <i32 as Foo>::foo(); | ^^^ the trait `Bar` is not implemented for `i32`, which is required by `i32: Foo` | help: this trait has no implementations, consider adding one --> f100.rs:2:1 | 2 | trait Bar {} | ^^^^^^^^^ note: required for `i32` to implement `Foo` --> f100.rs:3:14 | 3 | impl<T: Bar> Foo for T {} | --- ^^^ ^ | | | unsatisfied trait bound introduced here ``` Fix #40120.
68 lines
2.2 KiB
Plaintext
68 lines
2.2 KiB
Plaintext
error[E0277]: `()` is not a future
|
|
--> $DIR/unnecessary-await.rs:9:11
|
|
|
|
|
LL | boo().await;
|
|
| ----- ^^^^^ `()` is not a future
|
|
| |
|
|
| this call returns `()`
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
= note: required for `()` to implement `IntoFuture`
|
|
help: remove the `.await`
|
|
|
|
|
LL - boo().await;
|
|
LL + boo();
|
|
|
|
|
help: alternatively, consider making `fn boo` asynchronous
|
|
|
|
|
LL | async fn boo() {}
|
|
| +++++
|
|
|
|
error[E0277]: `()` is not a future
|
|
--> $DIR/unnecessary-await.rs:28:10
|
|
|
|
|
LL | e!().await;
|
|
| -^^^^^
|
|
| ||
|
|
| |`()` is not a future
|
|
| help: remove the `.await`
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
error[E0277]: `()` is not a future
|
|
--> $DIR/unnecessary-await.rs:22:15
|
|
|
|
|
LL | $expr.await
|
|
| ^^^^^
|
|
| |
|
|
| `()` is not a future
|
|
| remove the `.await`
|
|
...
|
|
LL | f!(());
|
|
| ------ in this macro invocation
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
= note: required for `()` to implement `IntoFuture`
|
|
= note: this error originates in the macro `f` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0277]: `()` is not a future
|
|
--> $DIR/unnecessary-await.rs:36:20
|
|
|
|
|
LL | for x in [] {}.await
|
|
| -^^^^^
|
|
| ||
|
|
| |`()` is not a future
|
|
| help: remove the `.await`
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|