Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a942b8b

Browse files
committedApr 11, 2023
hotfix: add type annotation to let binding
1 parent 2e1bb06 commit a942b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎clippy_lints/src/unnecessary_reserve.rs

+1-1
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)
Please sign in to comment.