rust/tests/rustdoc/reexport-trait-from-hidden-111064.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
512 B
Rust
Raw Permalink Normal View History

2023-05-02 14:35:53 +02:00
// Regression test for <https://github.com/rust-lang/rust/issues/111064>.
// Methods from a re-exported trait inside a `#[doc(hidden)]` item should
// be visible.
#![crate_name = "foo"]
//@ has 'foo/index.html'
2025-01-17 21:41:51 +01:00
//@ has - '//*[@id="main-content"]//dt/a[@href="trait.Foo.html"]' 'Foo'
2023-05-02 14:35:53 +02:00
//@ has 'foo/trait.Foo.html'
//@ has - '//*[@id="main-content"]//*[@class="code-header"]' 'fn test()'
2023-05-02 14:35:53 +02:00
#[doc(hidden)]
mod hidden {
pub trait Foo {
/// Hello, world!
fn test();
}
}
pub use hidden::Foo;