Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
hashmap
/
hashmap-index-mut.rs
blob: 98448e9d5f0f0080caa6d44fb008bfd5b57facee [
file
] [
log
] [
blame
] [
edit
]
use
std
::
collections
::
HashMap
;
fn
main
()
{
let
mut
map
=
HashMap
::<
u32
,
u32
>::
new
();
map
[&
0
]
=
1
;
//~ ERROR cannot assign
}