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