mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
364 B
Rust
16 lines
364 B
Rust
//@ edition: 2021
|
|
//@ run-rustfix
|
|
#![allow(unused_must_use, dead_code)]
|
|
|
|
use std::future::Future;
|
|
fn foo() -> impl Future<Output=()> {
|
|
async { }
|
|
}
|
|
|
|
fn bar(cx: &mut std::task::Context<'_>) {
|
|
let fut = foo();
|
|
fut.poll(cx);
|
|
//~^ ERROR no method named `poll` found for opaque type `impl Future<Output = ()>` in the current scope [E0599]
|
|
}
|
|
fn main() {}
|