]> git.lizzy.rs Git - rust.git/blob - crates/syntax/test_data/parser/inline/ok/0102_record_pat_field_list.rs
Merge #7321
[rust.git] / crates / syntax / test_data / parser / inline / ok / 0102_record_pat_field_list.rs
1 fn foo() {
2     let S {} = ();
3     let S { f, ref mut g } = ();
4     let S { h: _, ..} = ();
5     let S { h: _, } = ();
6 }