]> git.proxmox.com Git - rustc.git/blame - tests/ui/async-await/issue-108572.stderr
Update upstream source from tag 'upstream/1.70.0+dfsg1'
[rustc.git] / tests / ui / async-await / issue-108572.stderr
CommitLineData
353b0b11
FG
1error[E0599]: no method named `poll` found for opaque type `impl Future<Output = ()>` in the current scope
2 --> $DIR/issue-108572.rs:10:9
3 |
4LL | fut.poll();
5 | ^^^^ method not found in `impl Future<Output = ()>`
6 |
7 = help: method `poll` found on `Pin<&mut impl Future<Output = ()>>`, see documentation for `std::pin::Pin`
8 = help: self type must be pinned to call `Future::poll`, see https://rust-lang.github.io/async-book/04_pinning/01_chapter.html#pinning-in-practice
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0599`.