mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
13 lines
340 B
Rust
13 lines
340 B
Rust
// compile-flags: --document-private-items
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// @has static/static.FOO.html '//pre' 'static FOO: usize'
|
|
static FOO: usize = 1;
|
|
|
|
// @has static/static.BAR.html '//pre' 'pub static BAR: usize'
|
|
pub static BAR: usize = 1;
|
|
|
|
// @has static/static.BAZ.html '//pre' 'pub static mut BAZ: usize'
|
|
pub static mut BAZ: usize = 1;
|