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

7 lines
150 B
Rust

use macros::hashmap;
use std::collections::HashMap;
fn main() {
// using only commas is invalid
let _hm: HashMap<_, _> = hashmap!('a', 1);
}