rust/src/test/ui/nll/issue-51244.rs
2019-05-12 18:46:43 +01:00

5 lines
141 B
Rust

fn main() {
let ref my_ref @ _ = 0;
*my_ref = 0;
//~^ ERROR cannot assign to `*my_ref` which is behind a `&` reference [E0594]
}