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