mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 17:55:13 +00:00
12 lines
211 B
Rust
12 lines
211 B
Rust
fn main() {
|
|
let ref is_ref @ is_val = 42;
|
|
*is_ref;
|
|
*is_val;
|
|
//~^ ERROR cannot be dereferenced
|
|
|
|
let is_val @ ref is_ref = 42;
|
|
*is_ref;
|
|
*is_val;
|
|
//~^ ERROR cannot be dereferenced
|
|
}
|