If my crate exports a macro_rules! macro, the deny(missing_docs) attribute has no effect even though it probably should.
The following code should, at the very least, provide a warning
#[deny(missing_docs)]
#[macro_export]
macro_rules! foo {
() => {}
}
Preventing this code from compiling would likely break some backwards compatability, but I don't see why it shouldn't at least give a warning.
If my crate exports a
macro_rules!macro, thedeny(missing_docs)attribute has no effect even though it probably should.The following code should, at the very least, provide a warning
Preventing this code from compiling would likely break some backwards compatability, but I don't see why it shouldn't at least give a warning.