mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00

``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
warning: impl trait in impl method signature does not match trait method signature
|
|
--> $DIR/async-example-desugared-manual.rs:22:22
|
|
|
|
|
LL | async fn foo(&self) -> i32;
|
|
| --------------------------- return type from trait method defined here
|
|
...
|
|
LL | fn foo(&self) -> MyFuture {
|
|
| ^^^^^^^^
|
|
|
|
|
= note: add `#[allow(refining_impl_trait)]` if it is intended for this to be part of the public API of this crate
|
|
= note: we are soliciting feedback, see issue #121718 <https://github.com/rust-lang/rust/issues/121718> for more information
|
|
note: the lint level is defined here
|
|
--> $DIR/async-example-desugared-manual.rs:21:12
|
|
|
|
|
LL | #[warn(refining_impl_trait)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
= note: `#[warn(refining_impl_trait_reachable)]` implied by `#[warn(refining_impl_trait)]`
|
|
help: replace the return type so that it matches the trait
|
|
|
|
|
LL - fn foo(&self) -> MyFuture {
|
|
LL + fn foo(&self) -> impl Future<Output = i32> {
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|