aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0145_record_pat_field.rs
blob: 53cfdc22dd80860585994ff6d814c528895cbd4d (plain)
1
2
3
4
5
fn foo() {
    let S { 0: 1 } = ();
    let S { x: 1 } = ();
    let S { #[cfg(any())] x: 1 } = ();
}