Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
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`
}