mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-11 17:37:41 +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
|
||
|
}
|