mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
Add regression test
This commit is contained in:
parent
2bcbb25cb5
commit
88fd46e129
43
src/test/ui/lint/missing-doc-private-macro.rs
Normal file
43
src/test/ui/lint/missing-doc-private-macro.rs
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
// 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 {
|
||||||
|
//~^ ERROR missing documentation for macro
|
||||||
|
() => ()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub macro top_level_pub_macro {
|
||||||
|
//~^ ERROR missing documentation for macro
|
||||||
|
() => ()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Empty documentation.
|
||||||
|
pub fn main() {}
|
20
src/test/ui/lint/missing-doc-private-macro.stderr
Normal file
20
src/test/ui/lint/missing-doc-private-macro.stderr
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
error: missing documentation for macro
|
||||||
|
--> $DIR/missing-doc-private-macro.rs:31:5
|
||||||
|
|
|
||||||
|
LL | macro_rules! exported_to_top_level {
|
||||||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
note: the lint level is defined here
|
||||||
|
--> $DIR/missing-doc-private-macro.rs:5:9
|
||||||
|
|
|
||||||
|
LL | #![deny(missing_docs)]
|
||||||
|
| ^^^^^^^^^^^^
|
||||||
|
|
||||||
|
error: missing documentation for macro
|
||||||
|
--> $DIR/missing-doc-private-macro.rs:37:1
|
||||||
|
|
|
||||||
|
LL | pub macro top_level_pub_macro {
|
||||||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
error: aborting due to 2 previous errors
|
||||||
|
|
Loading…
Reference in New Issue
Block a user