mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
316 B
Rust
14 lines
316 B
Rust
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;
|