Skip to content

Commit

Permalink
Rollup merge of #117713 - GuillaumeGomez:document-hidden-json, r=notr…
Browse files Browse the repository at this point in the history
…iddle

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``
  • Loading branch information
GuillaumeGomez committed Nov 8, 2023
2 parents d8c52b3 + 33edea6 commit 9d3c802
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/rustdoc-json/reexport/reexport_of_hidden.rs
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 9d3c802

Please sign in to comment.