Thread with 2 posts
jump to expanded postRust's macro scoping is the worst. I like to document my crate's internal macros and I'll link to related macros where I can, but I sometimes can't, because macros don't have normal scope unless you export them… but they're internal macros, not intended for export ðŸ˜
@hikari the weirdest part of this is that you can export them privately to get around this problem
why does rust do this