test: add more tests

This commit is contained in:
2025-10-07 08:46:41 +03:00
parent 93696b5d68
commit 7dcee33fc1
2 changed files with 11 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ pub struct Value(u64);
impl Value {
#[inline]
#[must_use]
pub fn as_64(self) -> u64 {
pub const fn as_64(self) -> u64 {
self.0
}
}