rust/tests/rustdoc/files-creation-hidden.rs

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

25 lines
472 B
Rust
Raw Permalink Normal View History

2023-06-19 14:18:11 -05:00
#![crate_name="foo"]
//@ files foo '["index.html", "all.html", "sidebar-items.js"]'
//@ !has "foo/struct.Foo.html"
2023-06-19 14:18:11 -05:00
#[doc(hidden)]
pub struct Foo;
//@ !has "foo/struct.Bar.html"
2023-06-19 14:18:11 -05:00
pub use crate::Foo as Bar;
//@ !has "foo/struct.Baz.html"
2023-06-19 14:18:11 -05:00
#[doc(hidden)]
pub use crate::Foo as Baz;
//@ !has "foo/foo/index.html"
2023-06-19 14:18:11 -05:00
#[doc(hidden)]
pub mod foo {}
//@ !has "foo/bar/index.html"
2023-06-19 14:18:11 -05:00
pub use crate::foo as bar;
//@ !has "foo/baz/index.html"
2023-06-19 14:18:11 -05:00
#[doc(hidden)]
pub use crate::foo as baz;