dtolnay / syn

Parser for Rust source code
Apache License 2.0
2.81k stars 308 forks source link

Parse async closures trait bound syntax #1628

Open dtolnay opened 4 months ago

dtolnay commented 4 months ago

Tracking issue: https://github.com/rust-lang/rust/issues/62290

async fn call<T>(f: &impl async Fn() -> T) -> T {