We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abfbd1b commit e60072fCopy full SHA for e60072f
src/test/rustdoc/static.rs
@@ -2,11 +2,11 @@
2
3
#![crate_type = "lib"]
4
5
-// @has static/static.FOO.html '//pre[@class="static"]' 'static FOO: usize'
+// @has static/static.FOO.html '//pre' 'static FOO: usize'
6
static FOO: usize = 1;
7
8
-// @has static/static.BAR.html '//pre[@class="static"]' 'pub static BAR: usize'
+// @has static/static.BAR.html '//pre' 'pub static BAR: usize'
9
pub static BAR: usize = 1;
10
11
-// @has static/static.BAZ.html '//pre[@class="static"]' 'pub static mut BAZ: usize'
+// @has static/static.BAZ.html '//pre' 'pub static mut BAZ: usize'
12
pub static mut BAZ: usize = 1;
0 commit comments