rust/tests/rustdoc/macro-document-private.rs

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

20 lines
414 B
Rust
Raw Normal View History

2021-08-06 05:09:25 +00:00
// Checks that private macros are documented when `--document-private-items`
// is present.
//
// This is a regression test for issue #73754.
//
//@ compile-flags: --document-private-items
#![feature(decl_macro)]
//@ has macro_document_private/macro.some_macro.html
2021-08-06 05:09:25 +00:00
macro some_macro {
(a: tt) => {}
}
//@ has macro_document_private/macro.another_macro.html
2021-08-06 05:09:25 +00:00
macro_rules! another_macro {
(a: tt) => {}
}