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