Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
ui
/
issues
/
issue-23036.rs
blob: d67f184720e6cb82be639057fdc5bc888390bdcd [
file
] [
log
] [
blame
]
// run-pass
use
std
::
collections
::
HashMap
;
use
std
::
path
::
Path
;
fn
main
()
{
let
mut
map
=
HashMap
::
new
();
map
.
insert
(
Path
::
new
(
"a"
),
0
);
map
.
get
(
Path
::
new
(
"a"
));
}