8 lines
146 B
Rust
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 @ _ = ();
|
|
}
|