rust/tests/data/parser/inline/0034_bind_pat.rs
2018-02-18 01:06:48 +03:00

6 lines
94 B
Rust

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