chore: remove duplicate macro partially_shredded_variant_array_gen#9498
Conversation
partially_shredded_variant_array_gen
klion26
left a comment
There was a problem hiding this comment.
@codephage2020, thanks for the improvement, LGTM. This must have been left behind when I resolved a conflict.
scovich
left a comment
There was a problem hiding this comment.
I'm a bit surprised the duplication didn't trigger compiler errors?
But removing it also doesn't trigger any errors, so LGTM.
|
Tried that
the output will be will compile error |
|
CC @scovich @klion26 fn main() {
macro_rules! my_macro {
() => { println!("first"); };
}
my_macro!();
macro_rules! my_macro {
() => { println!("second"); };
}
my_macro!();
}output(NO WARNING) |
Which issue does this PR close?
partially_shredded_variant_array_gen#9492 .Rationale for this change
What changes are included in this PR?
Are these changes tested?
YES
Are there any user-facing changes?
NO