about summary refs log tree commit diff
path: root/tests/ui/async-await/async-closures/refd.rs
blob: 1d9bc1a601bdd18ebcf6791448999e0229b6179f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ aux-build:block-on.rs
//@ edition:2021
//@ build-pass

// check that `&{async-closure}` implements `AsyncFn`.

#![feature(async_closure)]

extern crate block_on;

struct NoCopy;

fn main() {
    block_on::block_on(async {
        async fn call_once(x: impl async Fn()) { x().await }
        call_once(&async || {}).await
    });
}