Skip to content

Commit f44fdba

Browse files
committed
hotfix: add type annotation to let binding
1 parent c8f604a commit f44fdba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/unnecessary_reserve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ fn check_extend_method(
113113
{
114114
read_found = true;
115115
}
116-
let _ = !read_found;
116+
let _: bool = !read_found;
117117
ControlFlow::Continue(())
118118
});
119119

0 commit comments

Comments
 (0)