rust/src/test/ui/issues/issue-51244.rs
2019-04-22 08:40:08 +01:00

4 lines
136 B
Rust

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