rust/tests/rustdoc/inline_local/doc-no-inline-32343.rs

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

27 lines
528 B
Rust
Raw Normal View History

2025-01-29 11:20:22 -07:00
// https://github.com/rust-lang/rust/issues/32343
#![crate_name="foobar"]
//@ !has foobar/struct.Foo.html
//@ has foobar/index.html
//@ has - '//code' 'pub use foo::Foo'
//@ !has - '//code/a' 'Foo'
#[doc(no_inline)]
pub use foo::Foo;
2025-01-29 11:20:22 -07:00
//@ !has foobar/struct.Bar.html
//@ has foobar/index.html
//@ has - '//code' 'pub use foo::Bar'
//@ has - '//code/a' 'Bar'
#[doc(no_inline)]
pub use foo::Bar;
mod foo {
pub struct Foo;
pub struct Bar;
}
pub mod bar {
2025-01-29 11:20:22 -07:00
//@ has foobar/bar/struct.Bar.html
pub use ::foo::Bar;
}