2024-01-03 15:56:10 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/35488
|
|
|
|
#![crate_name="foo"]
|
|
|
|
|
2017-06-12 13:00:09 -05:00
|
|
|
mod foo {
|
|
|
|
pub enum Foo {
|
|
|
|
Bar,
|
|
|
|
}
|
|
|
|
pub use self::Foo::*;
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/index.html' '//code' 'pub use self::Foo::*;'
|
|
|
|
//@ has 'foo/enum.Foo.html'
|
2017-06-12 13:00:09 -05:00
|
|
|
pub use self::foo::*;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/index.html' '//code' 'pub use std::option::Option::None;'
|
2017-06-12 13:00:09 -05:00
|
|
|
pub use std::option::Option::None;
|