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
536 B
Rust
Raw Normal View History

2023-02-21 15:10:58 +01: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 15:10:58 +01:00
#[doc(hidden)]
pub fn bar() {}
mod sub {
pub fn public() {}
}
2025-01-17 21:41:51 +01:00
//@ matches - '//dd' '^Displayed$'
2023-02-21 15:10:58 +01:00
/// Displayed
#[doc(inline)]
pub use crate::bar as Bar;
2025-01-17 21:41:51 +01:00
//@ matches - '//dd' '^Hello\sDisplayed$'
2023-02-21 15:10:58 +01:00
#[doc(inline)]
/// Hello
pub use crate::Bar as Bar2;
2025-01-17 21:41:51 +01:00
//@ matches - '//dd' '^Public$'
2023-02-21 15:10:58 +01:00
/// Public
pub use crate::sub::public as Public;