blob: c1bf9ceeac1cccce547600e299fd857ae6333cbc [file] [log] [blame]
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;