Skip to content

Commit 65cdbd3

Browse files
committed
Rustup to the latest nightly
1 parent 3084a64 commit 65cdbd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mismatch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ impl<'a, 'tcx> TypeRelation<'tcx> for MismatchRelation<'a, 'tcx> {
236236
}
237237
}
238238
(&TyKind::Tuple(as_), &TyKind::Tuple(bs)) => {
239-
let _ = as_.iter().zip(bs).map(|(a, b)| self.relate(a, b));
239+
let _ = as_.iter().zip(bs).map(|(a, b)| self.relate(&a, &b));
240240
None
241241
}
242242
(&TyKind::Projection(a_data), &TyKind::Projection(b_data)) => {

0 commit comments

Comments
 (0)