exercism-solutions/rust/macros/tests/invalid/missing-argument.rs

8 lines
187 B
Rust
Raw Normal View History

2024-01-07 18:35:20 -06:00
use macros::hashmap;
use std::collections::HashMap;
fn main() {
// an argument should come between each pair of commas
let _hm: HashMap<_, _> = hashmap!('a' => 1, , 'b' => 2);
}