blob: b777aa945ff66e1096182f7817193517aad7ec8b [file] [log] [blame]
许杰友 Jieyou Xu (Joe)6e48b962024-02-22 12:10:29 +00001//@ compile-flags: --document-private-items
ayazhafizabfbd1b2020-10-13 16:11:51 -05002
3#![crate_type = "lib"]
4
Guillaume Gomez1b670352024-06-21 14:03:08 +02005//@ has static/static.FOO.html '//pre' 'static FOO: usize'
ayazhafizabfbd1b2020-10-13 16:11:51 -05006static FOO: usize = 1;
7
Guillaume Gomez1b670352024-06-21 14:03:08 +02008//@ has static/static.BAR.html '//pre' 'pub static BAR: usize'
ayazhafizabfbd1b2020-10-13 16:11:51 -05009pub static BAR: usize = 1;
10
Guillaume Gomez1b670352024-06-21 14:03:08 +020011//@ has static/static.BAZ.html '//pre' 'pub static mut BAZ: usize'
ayazhafizabfbd1b2020-10-13 16:11:51 -050012pub static mut BAZ: usize = 1;