12 lines
210 B
Rust
12 lines
210 B
Rust
// 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"));
|
|
}
|