exercism-solutions/rust/macros/tests/invalid/only-arrow.rs
2024-01-07 18:35:57 -06:00

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!(=>);
}