summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-46767.rs
blob: ef6ed104b743b2f3c3b2cba4bf52e20ef391e852 (plain)
1
2
3
4
5
6
7
8
9
#![crate_name = "foo"]

mod private {
    pub enum Enum{Variant}
}
pub use self::private::Enum::*;

// @!has-dir foo/private
// @!has foo/index.html '//a/@href' 'private/index.html'