mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +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
|
|
}
|