mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03: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
|
|
}
|