Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
error-codes
/
E0594.rs
blob: 8b0cae7e17b3010720d689f840711d066cde461b [
file
]
static
NUM
:
i32
=
18
;
fn
main
()
{
NUM
=
20
;
//~ ERROR cannot assign to immutable static item `NUM`
}