Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
borrowck
/
immutable-arg.rs
blob: 2352d1bbe64565b78ab09e265a842878825e4fe5 [
file
] [
log
] [
blame
]
fn
foo
(
_x
:
u32
)
{
_x
=
4
;
//~^ ERROR cannot assign to immutable argument `_x`
}
fn
main
()
{}