rust/tests/data/parser/inline/0034_bind_pat.rs

9 lines
146 B
Rust
Raw Normal View History

fn main() {
let a = ();
2018-07-31 14:30:11 +02:00
let mut b = ();
let ref c = ();
let ref mut d = ();
let e @ _ = ();
let ref mut f @ g @ _ = ();
}