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