summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/issue-98604.rs
blob: d07fc9822a02d9254f1bf5bd736472796220c7c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// edition:2018

type AsyncFnPtr = Box<dyn Fn() -> std::pin::Pin<Box<dyn std::future::Future<Output = ()>>>>;

async fn test() {}

#[allow(unused_must_use)]
fn main() {
    Box::new(test) as AsyncFnPtr;
    //~^ ERROR expected `test` to be a fn item that returns `Pin<Box<dyn Future<Output = ()>>>`, but it returns `impl Future<Output = ()>
}