We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad9b9db commit 949466fCopy full SHA for 949466f
rust-toolchain
@@ -1 +1 @@
1
-nightly-2020-07-28
+nightly-2020-08-07
src/traverse.rs
@@ -1146,7 +1146,7 @@ fn diff_trait_impls<'tcx>(
1146
let to_new = TranslationContext::target_new(tcx, id_mapping, false);
1147
let to_old = TranslationContext::target_old(tcx, id_mapping, false);
1148
1149
- for old_impl_def_id in tcx
+ for (old_impl_def_id, _) in tcx
1150
.all_trait_implementations(id_mapping.get_old_crate())
1151
.iter()
1152
{
@@ -1174,7 +1174,7 @@ fn diff_trait_impls<'tcx>(
1174
}
1175
1176
1177
- for new_impl_def_id in tcx
+ for (new_impl_def_id, _) in tcx
1178
.all_trait_implementations(id_mapping.get_new_crate())
1179
1180
0 commit comments