Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-23036.rs
blob: 5186fccd042b2e654f8613bbdd8a7c2a686c2d1e [
file
] [
log
] [
blame
] [
edit
]
//@ 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"
));
}