]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-assign-to-constants.rs
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[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 }