blob: a307e7eed959e2f1216269c763741014a9208e6d [file] [log] [blame]
// run-pass
// ignore-cloudabi no std::path
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"));
}