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