]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-23036.rs
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / issues / issue-23036.rs
1 // run-pass
2 // ignore-wasm32-bare FIXME(#93923) llvm miscompilation
3
4 use std::collections::HashMap;
5 use std::path::Path;
6
7 fn main() {
8     let mut map = HashMap::new();
9     map.insert(Path::new("a"), 0);
10     map.get(Path::new("a"));
11 }