7 lines
154 B
Rust
7 lines
154 B
Rust
use macros::hashmap;
|
|
use std::collections::HashMap;
|
|
|
|
fn main() {
|
|
// a single random arrow is not valid
|
|
let _hm: HashMap<(), ()> = hashmap!(=>);
|
|
}
|