Fix test to use &mut rather than &. Closes #30

This commit is contained in:
LukeMathWalker 2024-05-22 11:11:05 +02:00
parent 5bb9333ae9
commit b54b0b7023
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ mod tests {
#[test]
fn u64_mut_ref_size() {
assert_eq!(size_of::<&u64>(), todo!());
assert_eq!(size_of::<&mut u64>(), todo!());
}
#[test]