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