rust/src/test/ui/E0594.rs
2018-12-25 21:08:33 -07:00

10 lines
208 B
Rust

// revisions: ast mir
//[mir]compile-flags: -Z borrowck=mir
static NUM: i32 = 18;
fn main() {
NUM = 20; //[ast]~ ERROR E0594
//[mir]~^ ERROR cannot assign to immutable static item `NUM`
}