]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-assign-to-constants.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / 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 }