rust/tests/data/parser/inline/0034_bind_pat.rs
Aleksey Kladov 580340d1b8 mut bindings
2018-07-31 15:30:11 +03:00

8 lines
146 B
Rust

fn main() {
let a = ();
let mut b = ();
let ref c = ();
let ref mut d = ();
let e @ _ = ();
let ref mut f @ g @ _ = ();
}