expandable 0.1.1

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

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

#[expandable::expr]
macro_rules! b {
    () => {
        (42,, 42)
    };
}

#[expandable::expr]
macro_rules! c {
    () => {
        (a b)
    }
}

fn main() {}