How can I see the code output for expanded Rust macros?
For example I have this snippet:
macro_rules! five_times {
($x:expr) => (5 * $x);
}
fn main() {
let a = five_times!(2 + 3);
}
And I want to see something like this:
fn main() {
let a = 5 * (2 + 3);
}