2020-10-13 16:11:51 -05:00
|
|
|
// compile-flags: --document-private-items
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2020-10-13 16:47:53 -05:00
|
|
|
// @has static/static.FOO.html '//pre' 'static FOO: usize'
|
2020-10-13 16:11:51 -05:00
|
|
|
static FOO: usize = 1;
|
|
|
|
|
2020-10-13 16:47:53 -05:00
|
|
|
// @has static/static.BAR.html '//pre' 'pub static BAR: usize'
|
2020-10-13 16:11:51 -05:00
|
|
|
pub static BAR: usize = 1;
|
|
|
|
|
2020-10-13 16:47:53 -05:00
|
|
|
// @has static/static.BAZ.html '//pre' 'pub static mut BAZ: usize'
|
2020-10-13 16:11:51 -05:00
|
|
|
pub static mut BAZ: usize = 1;
|