rust/tests/rustdoc/macro-private-not-documente...

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

20 lines
591 B
Rust
Raw Normal View History

2021-08-29 15:51:18 +08:00
// Checks that private macros aren't documented by default. They
// should be still be documented in `--document-private-items` mode,
// but that's tested in `macro-document-private.rs`.
//
//
// This is a regression text for issue #88453.
#![feature(decl_macro)]
//@ !hasraw macro_private_not_documented/index.html 'a_macro'
//@ !has macro_private_not_documented/macro.a_macro.html
2021-08-29 15:51:18 +08:00
macro_rules! a_macro {
() => ()
}
//@ !hasraw macro_private_not_documented/index.html 'another_macro'
//@ !has macro_private_not_documented/macro.another_macro.html
2021-08-29 15:51:18 +08:00
macro another_macro {
() => ()
}