]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0594.rs
Suggest `if let`/`let_else` for refutable pat in `let`
[rust.git] / src / test / ui / error-codes / E0594.rs
1 static NUM: i32 = 18;
2
3 fn main() {
4     NUM = 20; //~ ERROR cannot assign to immutable static item `NUM`
5 }