cps 0.3.0

Assists in the creation of readable and maintainable macro_rules! macros
Documentation
1
2
3
4
5
6
7
8
9
10
// This is a manual test, since it results in a compiler error.

#[allow(unused)]
#[cps::cps]
macro_rules! twice_error_message {
    ($($branch_one:ident)|*) => {};
    ($($branch_two:ident),*) => {};
}

//twice_error_message!(A B);