9 lines
146 B
Rust
Raw Normal View History

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