summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-35488.rs
blob: c1bf9ceeac1cccce547600e299fd857ae6333cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod foo {
    pub enum Foo {
        Bar,
    }
    pub use self::Foo::*;
}

// @has 'issue_35488/index.html' '//code' 'pub use self::Foo::*;'
// @has 'issue_35488/enum.Foo.html'
pub use self::foo::*;

// @has 'issue_35488/index.html' '//code' 'pub use std::option::Option::None;'
pub use std::option::Option::None;