3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-05 21:24:07 +00:00

fix actual test code ;-)

This commit is contained in:
Arpad Borsos 2022-07-09 17:20:01 +02:00
parent fffd6895b2
commit 7c190ef171
No known key found for this signature in database
GPG key ID: FC7BCA77824B3298

View file

@ -6,7 +6,7 @@ fn some_fn(input: bool) -> usize {
if input {
2 + 4
} else {
3.saturating_add(5)
3_usize.saturating_add(5)
}
}