mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-06 18:28:51 +00:00
6 lines
94 B
Rust
6 lines
94 B
Rust
fn main() {
|
|
let a = ();
|
|
let ref b = ();
|
|
let ref mut c = ();
|
|
let d @ _ = ();
|
|
}
|