summary refs log tree commit diff
path: root/src/test/ui/issues/issue-51244.rs
blob: d634b8bf80079ce8f885c5ffea40b9455f52847e (plain)
1
2
3
4
fn main() {
    let ref my_ref @ _ = 0;
    *my_ref = 0; //~ ERROR cannot assign to `*my_ref`, which is behind a `&` reference [E0594]
}