]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-assign-to-constants.rs
Rollup merge of #102500 - compiler-errors:parse-sess-cleanup, r=cjgillot
[rust.git] / src / test / ui / borrowck / borrowck-assign-to-constants.rs
1 static foo: isize = 5;
2
3 fn main() {
4     // assigning to various global constants
5     foo = 6; //~ ERROR cannot assign to immutable static item `foo`
6 }