Skip to content

Commit 296adba

Browse files
Add rustdoc test for const computed value
1 parent c5ce3e1 commit 296adba

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#![crate_name = "foo"]
2+
3+
// @has 'foo/constant.HOUR_IN_SECONDS.html'
4+
// @has - '//*[@class="docblock item-decl"]//code' 'pub const HOUR_IN_SECONDS: u64 = 60 * 60; // 3_600u64'
5+
pub const HOUR_IN_SECONDS: u64 = 60 * 60;
6+
7+
// @has 'foo/constant.NEGATIVE.html'
8+
// @has - '//*[@class="docblock item-decl"]//code' 'pub const NEGATIVE: i64 = -60 * 60; // -3_600i64'
9+
pub const NEGATIVE: i64 = -60 * 60;

0 commit comments

Comments
 (0)