cps 0.2.3

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

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

//twice_error_message!(A B);