mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 01:40:46 +00:00
6 lines
142 B
Rust
6 lines
142 B
Rust
fn main() {
|
|
let ref my_ref @ _ = 0;
|
|
*my_ref = 0;
|
|
//~^ ERROR cannot assign to `*my_ref`, which is behind a `&` reference [E0594]
|
|
}
|