exercism-solutions/rust/macros/tests/invalid/triple-arguments.rs

8 lines
131 B
Rust
Raw Normal View History

2024-01-07 18:35:20 -06:00
use macros::hashmap;
use std::collections::HashMap;
fn main() {
// three arguments are invalid
hashmap!('a' => 1, 'b');
}