rust/tests/rustdoc-json/reexport/pub_use_doc_hidden.rs
Alona Enraght-Moony 22e1576a12 rustdoc-json: Fix test so it actuall checks things
After #111427, no item has a `kind` field, so these assertions could never
fail. Instead, assert that those two items arn't present.
2023-11-09 12:13:16 +00:00

14 lines
315 B
Rust

// Regression test for <https://github.com/rust-lang/rust/issues/106379>
mod repeat_n {
#[doc(hidden)]
/// not here
pub struct RepeatN {}
}
/// not here
pub use repeat_n::RepeatN;
// @count "$.index[*][?(@.name=='pub_use_doc_hidden')].inner.items[*]" 0
// @!has "$.index[*][?(@.docs == 'not here')]"