I defined a macro in a module, and it works fine. Now, I\'m trying to document said macro with an example. Apparently, I need to manually specify the crate line to ask for m
Well adding a main function did the trick. My example code did not need to run anything (just compile) so I didn't even bother adding a main function, but apparently adding it puts the code in a virtual "crate root", and it accepts the macro_use. Yay!
So what I did is just add :
/// # fn main() { }