2018-06-15 18:16:43 -05:00
|
|
|
//@ aux-build:cross-glob.rs
|
|
|
|
//@ build-aux-docs
|
|
|
|
//@ ignore-cross-compile
|
|
|
|
|
|
|
|
extern crate inner;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has cross_glob/struct.SomeStruct.html
|
|
|
|
//@ has cross_glob/fn.some_fn.html
|
|
|
|
//@ !has cross_glob/enum.Shadowed.html
|
|
|
|
//@ !has cross_glob/index.html '//code' 'pub use inner::*;'
|
2018-06-15 18:16:43 -05:00
|
|
|
#[doc(inline)]
|
|
|
|
pub use inner::*;
|
2023-01-15 15:31:21 -06:00
|
|
|
|
|
|
|
// This type shadows the glob-imported enum `Shadowed`.
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has cross_glob/type.Shadowed.html
|
2023-01-15 15:31:21 -06:00
|
|
|
pub type Shadowed = u8;
|