dtolnay / syn

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

Parse postfix match syntax #1630

Open dtolnay opened 4 months ago

dtolnay commented 4 months ago

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

Some(2).match {
    Some(_) => true,
    None => false
}