]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/macro-document-private-duplicate.rs
Auto merge of #107549 - Zoxc:rustc-shared, r=jyn514
[rust.git] / tests / rustdoc / macro-document-private-duplicate.rs
1 // ignore-test (fails spuriously, see issue #89228)
2
3 // FIXME: If two macros in the same module have the same name
4 // (yes, that's a thing), rustdoc lists both of them on the index page,
5 // but only documents the first one on the page for the macro.
6 // Fortunately, this can only happen in document private items mode,
7 // but it still isn't ideal behavior.
8 //
9 // See https://github.com/rust-lang/rust/pull/88019#discussion_r693920453
10 //
11 // compile-flags: --document-private-items
12
13 // @hasraw macro_document_private_duplicate/index.html 'Doc 1.'
14 // @hasraw macro_document_private_duplicate/macro.a_macro.html 'Doc 1.'
15 /// Doc 1.
16 macro_rules! a_macro {
17     () => ()
18 }
19
20 // @hasraw macro_document_private_duplicate/index.html 'Doc 2.'
21 // @!hasraw macro_document_private_duplicate/macro.a_macro.html 'Doc 2.'
22 /// Doc 2.
23 macro_rules! a_macro {
24     () => ()
25 }