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

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

23 lines
494 B
Rust
Raw Permalink Normal View History

2023-06-19 19:18:11 +00:00
#![crate_name="foo"]
//@ files "foo" \
2023-06-23 13:12:13 +00:00
// '["index.html", "all.html", "sidebar-items.js", "foo", "bar", "private", "struct.Bar.html"]'
//@ files "foo/bar" '["index.html", "sidebar-items.js"]'
2023-06-23 13:12:13 +00:00
//@ !has "foo/priv/index.html"
//@ !has "foo/priv/struct.Foo.html"
2023-06-19 19:18:11 +00:00
mod private {
pub struct Foo;
}
//@ has "foo/struct.Bar.html"
2023-06-19 19:18:11 +00:00
pub use crate::private::Foo as Bar;
//@ !has "foo/foo/index.html"
2023-06-19 19:18:11 +00:00
mod foo {
pub mod subfoo {}
}
//@ has "foo/bar/index.html"
2023-06-19 19:18:11 +00:00
pub use crate::foo::subfoo as bar;