about summary refs log tree commit diff
path: root/tests/ui/async-await/async-closures/auxiliary/foreign.rs
blob: 935b029a7c5ad43cd5c22434bf8ef19eb2a306ec (plain)
1
2
3
4
5
//@ edition:2021

pub fn closure() -> impl AsyncFn() {
    async || { /* Don't really need to do anything here. */ }
}