summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-108572.rs
blob: 3596580763c5a97b5199b72f26f63cbd27eb61fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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() {}