2016-06-03 16:59:45 -05:00
|
|
|
#![crate_name="foo"]
|
|
|
|
|
|
|
|
pub use hidden::STATIC_FOO;
|
|
|
|
pub use hidden::CONST_FOO;
|
|
|
|
|
|
|
|
mod hidden {
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/hidden/static.STATIC_FOO.html
|
|
|
|
//@ has - '//p/a' '../../foo/static.STATIC_FOO.html'
|
2016-06-03 16:59:45 -05:00
|
|
|
pub static STATIC_FOO: u64 = 0;
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/hidden/constant.CONST_FOO.html
|
|
|
|
//@ has - '//p/a' '../../foo/constant.CONST_FOO.html'
|
2016-06-03 16:59:45 -05:00
|
|
|
pub const CONST_FOO: u64 = 0;
|
|
|
|
}
|