]> git.lizzy.rs Git - rust.git/blob - crates/syntax/test_data/parser/inline/ok/0112_bind_pat.rs
Merge #7321
[rust.git] / crates / syntax / test_data / parser / inline / ok / 0112_bind_pat.rs
1 fn main() {
2     let a = ();
3     let mut b = ();
4     let ref c = ();
5     let ref mut d = ();
6     let e @ _ = ();
7     let ref mut f @ g @ _ = ();
8 }