2017-09-28 12:14:37 -05:00
|
|
|
// revisions: ast mir
|
2017-11-19 16:37:59 -06:00
|
|
|
//[mir]compile-flags: -Z borrowck=mir
|
2017-09-28 12:14:37 -05:00
|
|
|
|
|
|
|
static NUM: i32 = 18;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
NUM = 20; //[ast]~ ERROR E0594
|
2018-07-17 14:29:48 -05:00
|
|
|
//[mir]~^ ERROR cannot assign to immutable static item `NUM`
|
2017-09-28 12:14:37 -05:00
|
|
|
}
|