Rollup merge of #117713 - GuillaumeGomez:document-hidden-json, r=notriddle
Add test for reexported hidden item with `--document-hidden-items` Coming from [this discussion on zulip](https://rust-lang.zulipchat.com/#narrow/stream/266220-t-rustdoc/topic/Using.20cargo-semver-checks.20in.20rustdoc.20JSON.20tests.3A.20revisited). cc ``@aDotInTheVoid`` r? ``@notriddle``
This commit is contained in:
commit
9d3c80248b
10
tests/rustdoc-json/reexport/reexport_of_hidden.rs
Normal file
10
tests/rustdoc-json/reexport/reexport_of_hidden.rs
Normal file
@ -0,0 +1,10 @@
|
||||
// compile-flags: --document-hidden-items
|
||||
|
||||
// @has "$.index[*].inner[?(@.import.name=='UsedHidden')]"
|
||||
// @has "$.index[*][?(@.name=='Hidden')]"
|
||||
pub mod submodule {
|
||||
#[doc(hidden)]
|
||||
pub struct Hidden {}
|
||||
}
|
||||
|
||||
pub use submodule::Hidden as UsedHidden;
|
Loading…
Reference in New Issue
Block a user