Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
borrowck
/
borrowck-assign-to-constants.rs
blob: 5881dccf61ab3bd950421ecd4576b2a6a98f61ed [
file
] [
log
] [
blame
]
static
foo
:
isize
=
5
;
fn
main
()
{
// assigning to various global constants
foo
=
6
;
//~ ERROR cannot assign to immutable static item `foo`
}