rust/tests/ui/lint/missing-doc-private-macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
830 B
Rust
Raw Normal View History

2021-07-07 19:55:09 -05:00
// Checks that undocumented private macros will not generate `missing_docs`
// lints, but public ones will.
//
// This is a regression test for issue #57569
#![deny(missing_docs)]
#![feature(decl_macro)]
//! Empty documentation.
macro new_style_private_macro {
() => ()
}
pub(crate) macro new_style_crate_macro {
() => ()
}
macro_rules! old_style_private_macro {
() => ()
}
mod submodule {
pub macro new_style_macro_in_private_module {
() => ()
}
macro_rules! old_style_mod_private_macro {
() => ()
}
#[macro_export]
macro_rules! exported_to_top_level {
2021-08-06 00:09:25 -05:00
//~^ ERROR missing documentation for a macro
2021-07-07 19:55:09 -05:00
() => ()
}
}
pub macro top_level_pub_macro {
2021-08-06 00:09:25 -05:00
//~^ ERROR missing documentation for a macro
2021-07-07 19:55:09 -05:00
() => ()
}
/// Empty documentation.
pub fn main() {}