summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/write_to_static_via_mut_ref.rs
blob: 39b830ae4e91564853d3b9e5fae02da04cef52e8 (plain)
1
2
3
4
5
6
7
#![feature(const_mut_refs)]

static OH_NO: &mut i32 = &mut 42; //~ ERROR mutable references are not allowed
fn main() {
    assert_eq!(*OH_NO, 42);
    *OH_NO = 43; //~ ERROR cannot assign to `*OH_NO`, as `OH_NO` is an immutable static
}