5 lines
119 B
Rust
5 lines
119 B
Rust
//@ edition:2021
|
|
|
|
pub fn closure() -> impl AsyncFn() {
|
|
async || { /* Don't really need to do anything here. */ }
|
|
}
|