mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-02 08:18:46 +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 @ _ = ();
|
|
}
|