summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-51244.rs
blob: c4cbee6754c0461432785589aae247b71392fbcc (plain)
1
2
3
4
5
fn main() {
    let ref my_ref @ _ = 0;
    *my_ref = 0;
    //~^ ERROR cannot assign to `*my_ref`, which is behind a `&` reference [E0594]
}