expandable 0.1.1

What if we could check declarative macros before using them?
Documentation
#![allow(unused)]

#[expandable::expr]
macro_rules! a {
    () => {
        path:::<foo>
    };
}

#[expandable::expr]
macro_rules! b {
    () => {
        path::< <foo> >
    };
}

#[expandable::expr]
macro_rules! c {
    () => {
        path::1
    };
}

fn main() {}