]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-35488.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.git] / src / test / rustdoc / issue-35488.rs
1 mod foo {
2     pub enum Foo {
3         Bar,
4     }
5     pub use self::Foo::*;
6 }
7
8 // @has 'issue_35488/index.html' '//code' 'pub use self::Foo::*;'
9 // @has 'issue_35488/enum.Foo.html'
10 pub use self::foo::*;
11
12 // @has 'issue_35488/index.html' '//code' 'pub use std::option::Option::None;'
13 pub use std::option::Option::None;