expander 2.2.1

Expands proc macro output to a file, to enable easier debugging
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[baz::baz]
struct A;

#[baz::baz]
struct B;

#[test]
fn main() {
    let _a = A;
    let _b = B;
}