rust/tests/rustdoc/attributes-inlining-108281.rs

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

26 lines
623 B
Rust
Raw Permalink Normal View History

2023-02-21 22:10:58 +08:00
// Regression test for <https://github.com/rust-lang/rust/issues/108281>.
// It ensures that the attributes on the first reexport are not duplicated.
#![crate_name = "foo"]
//@ has 'foo/index.html'
2023-02-21 22:10:58 +08:00
#[doc(hidden)]
pub fn bar() {}
mod sub {
pub fn public() {}
}
//@ matches - '//*[@class="desc docblock-short"]' '^Displayed$'
2023-02-21 22:10:58 +08:00
/// Displayed
#[doc(inline)]
pub use crate::bar as Bar;
//@ matches - '//*[@class="desc docblock-short"]' '^Hello\sDisplayed$'
2023-02-21 22:10:58 +08:00
#[doc(inline)]
/// Hello
pub use crate::Bar as Bar2;
//@ matches - '//*[@class="desc docblock-short"]' '^Public$'
2023-02-21 22:10:58 +08:00
/// Public
pub use crate::sub::public as Public;