]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-35488.rs
Rollup merge of #106106 - jyn514:remote-tracking-branch, r=Mark-Simulacrum
[rust.git] / tests / 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;