Sign in
android
/
toolchain
/
rustc
/
32f7835b4f844d645621e83c89a3178ef87b0d69
/
.
/
src
/
test
/
ui
/
liveness
/
liveness-assign
/
liveness-assign-imm-local-in-loop.rs
blob: 08911c5bde781f2601e946698c16433b14de9569 [
file
] [
log
] [
blame
]
fn
test
()
{
let
v
:
isize
;
//~^ HELP consider making this binding mutable
//~| SUGGESTION mut v
loop
{
v
=
1
;
//~ ERROR cannot assign twice to immutable variable `v`
//~| NOTE cannot assign twice to immutable variable
}
}
fn
main
()
{
}