blob: 759bf84db62112ecf1044bcfce95d56ca5fd5e69 [file] [log] [blame]
#![crate_name = "foo"]
mod foo {
pub use bar::*;
pub mod bar {
pub trait Foo {
fn foo();
}
}
}
// @count foo/index.html '//*[@class="trait"]' 1
pub use foo::bar::*;
pub use foo::*;