blob: 7b3b4b26b01b354b6e44f48d43361aeb4da6350c [file] [log] [blame] [edit]
// Checks that you can set a lint level specficially for a macro definition.
//
// This is a regression test for issue #59306.
//
//@ check-pass
#[deny(missing_docs)]
mod module {
#[allow(missing_docs)]
#[macro_export]
macro_rules! hello {
() => ()
}
}
fn main() {}