Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
async-closures
/
auxiliary
/
foreign.rs
blob: 2c935f5e1fa847e60806f4727284a032c1288b72 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
#![
feature
(
async_closure
)]
pub
fn
closure
()
->
impl
async
Fn
()
{
async
||
{
/* Don't really need to do anything here. */
}
}