mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
16 lines
358 B
Rust
16 lines
358 B
Rust
// Regression test for <https://github.com/rust-lang/rust/issues/106379>
|
|
|
|
#![feature(no_core)]
|
|
#![no_core]
|
|
|
|
mod repeat_n {
|
|
#[doc(hidden)]
|
|
pub struct RepeatN {}
|
|
}
|
|
|
|
pub use repeat_n::RepeatN;
|
|
|
|
// @count "$.index[*][?(@.name=='pub_use_doc_hidden')].inner.items[*]" 0
|
|
// @!has "$.index[*][?(@.kind=='struct')]"
|
|
// @!has "$.index[*][?(@.kind=='import')]"
|