Skip to content

Commit

Permalink
Add test for anonymous reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jun 1, 2022
1 parent e160882 commit 1d12b7e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/test/rustdoc/anonymous-reexport.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#![crate_name = "foo"]

// This test ensures we don't display anonymous (non-inline) re-exports of public items.

// @has 'foo/index.html'
// @has - '//*[@id="main-content"]' ''
// We check that the only "h2" present is for "Bla".
// @count - '//*[@id="main-content"]/h2' 1
// @has - '//*[@id="main-content"]/h2' 'Structs'
// @count - '//*[@id="main-content"]//a[@class="struct"]' 1

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;

0 comments on commit 1d12b7e

Please sign in to comment.