Skip to content

Commit

Permalink
Add test for reexported hidden item with --document-hidden-items
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Nov 8, 2023
1 parent 2db26d3 commit 33edea6
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 33edea6

Please sign in to comment.