Epand lints

This commit is contained in:
2025-04-04 01:16:35 -06:00
parent 669b9d5845
commit 0d7edf525e
2 changed files with 17 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
left.wrapping_add(right)
}
#[cfg(test)]