summaryrefslogtreecommitdiffstats
path: root/third_party/rust/phf_macros/tests/compile-fail/bad-syntax.rs
blob: a766be4283751e3da0f874d55723318aa418b3a8 (plain)
1
2
3
4
5
6
7
8
9
use phf::phf_map;

static MAP: phf::Map<u32, u32> = phf_map! {
    Signature::
    => //~ ERROR expected identifier
    ()
};

fn main() {}