rust/tests/rustdoc/attributes-inlining-108281.rs
2025-01-18 20:29:55 +01:00

25 lines
536 B
Rust

// 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'
#[doc(hidden)]
pub fn bar() {}
mod sub {
pub fn public() {}
}
//@ matches - '//dd' '^Displayed$'
/// Displayed
#[doc(inline)]
pub use crate::bar as Bar;
//@ matches - '//dd' '^Hello\sDisplayed$'
#[doc(inline)]
/// Hello
pub use crate::Bar as Bar2;
//@ matches - '//dd' '^Public$'
/// Public
pub use crate::sub::public as Public;