mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 19:57:47 +00:00
6 lines
173 B
Rust
6 lines
173 B
Rust
// check-pass
|
|
// manually desugared version of an `async fn` (but with a closure instead of a coroutine)
|
|
pub fn a() -> impl Fn() -> u32 {
|
|
|| content::doesnt::matter()
|
|
}
|