Merge pull request #1192 from aaarkid/patch-1
fix: Add a deref in the test code
This commit is contained in:
commit
49a101b189
|
@ -54,7 +54,7 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn mult_box() {
|
fn mult_box() {
|
||||||
let mut num: Box<u32> = Box::new(3);
|
let mut num: Box<u32> = Box::new(3);
|
||||||
num_sq(&mut num);
|
num_sq(&mut *num);
|
||||||
assert_eq!(*num, 9);
|
assert_eq!(*num, 9);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue