File: async-example-desugared-boxed.stderr

package info (click to toggle)
rustc 1.86.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 913,560 kB
  • sloc: xml: 158,127; python: 35,921; javascript: 19,689; sh: 19,600; cpp: 18,906; ansic: 13,124; asm: 4,376; makefile: 708; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (25 lines) | stat: -rw-r--r-- 1,123 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
warning: impl trait in impl method signature does not match trait method signature
  --> $DIR/async-example-desugared-boxed.rs:14:22
   |
LL |     async fn foo(&self) -> i32;
   |     --------------------------- return type from trait method defined here
...
LL |     fn foo(&self) -> Pin<Box<dyn Future<Output = i32> + '_>> {
   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = 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-boxed.rs:13: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) -> Pin<Box<dyn Future<Output = i32> + '_>> {
LL +     fn foo(&self) -> impl Future<Output = i32> {
   |

warning: 1 warning emitted