]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-assign-to-constants.rs
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[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 }