2022-06-01 10:25:04 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// This test ensures we don't display anonymous (non-inline) re-exports of public items.
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has 'foo/index.html'
|
|
|
|
//@ has - '//*[@id="main-content"]' ''
|
2023-03-09 12:32:39 +00:00
|
|
|
// We check that the only "h2" present are "Structs" (for "Bla") and "Re-exports".
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ count - '//*[@id="main-content"]/h2' 2
|
|
|
|
//@ has - '//*[@id="main-content"]/h2' 'Structs'
|
|
|
|
//@ has - '//*[@id="main-content"]/h2' 'Re-exports'
|
2023-03-09 12:32:39 +00:00
|
|
|
// The 3 re-exports.
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ count - '//*[@id="main-content"]//*[@class="item-table"]//li//code' 3
|
2023-03-09 12:32:39 +00:00
|
|
|
// The public struct.
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ count - '//*[@id="main-content"]//a[@class="struct"]' 1
|
2022-06-01 10:25:04 +00:00
|
|
|
|
|
|
|
mod ext {
|
|
|
|
pub trait Foo {}
|
|
|
|
pub trait Bar {}
|
|
|
|
pub struct S;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use crate::ext::Foo as _;
|
|
|
|
pub use crate::ext::Bar as _;
|
|
|
|
pub use crate::ext::S as _;
|
|
|
|
|
|
|
|
pub struct Bla;
|