mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Iterate over arrays dirrectly, instead of going through a slice
This commit is contained in:
parent
32be158630
commit
bd04416aaa
4 changed files with 5 additions and 5 deletions
|
@ -1269,7 +1269,7 @@ impl<'a> InferenceContext<'a> {
|
|||
// that are not closures, then we type-check the closures. This is so
|
||||
// that we have more information about the types of arguments when we
|
||||
// type-check the functions. This isn't really the right way to do this.
|
||||
for &check_closures in &[false, true] {
|
||||
for check_closures in [false, true] {
|
||||
let mut skip_indices = skip_indices.into_iter().copied().fuse().peekable();
|
||||
let param_iter = param_tys.iter().cloned().chain(repeat(self.err_ty()));
|
||||
let expected_iter = expected_inputs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue