7 lines
94 B
Rust
7 lines
94 B
Rust
fn main() {
|
|
let a = ();
|
|
let ref b = ();
|
|
let ref mut c = ();
|
|
let d @ _ = ();
|
|
}
|