Epand lints

This commit is contained in:
2025-04-04 01:16:31 -06:00
parent c6ed019df7
commit 72e376d74c
2 changed files with 16 additions and 1 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)]