aboutsummaryrefslogtreecommitdiff
path: root/rust/macros/tests/invalid/triple-arguments.rs
blob: 54351aef415fdd7b67d5557f4b310804dc25f276 (plain) (blame)
1
2
3
4
5
6
7
use macros::hashmap;
use std::collections::HashMap;

fn main() {
    // three arguments are invalid
    hashmap!('a' => 1, 'b');
}