diff options
Diffstat (limited to 'tests/rustdoc/static.rs')
-rw-r--r-- | tests/rustdoc/static.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/rustdoc/static.rs b/tests/rustdoc/static.rs new file mode 100644 index 000000000..90dafd8b3 --- /dev/null +++ b/tests/rustdoc/static.rs @@ -0,0 +1,12 @@ +// 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; |