blob: 743415d58afadb3b01e53473bdf25210cf1742c7 [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]
}