We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8534923 commit 55310bbCopy full SHA for 55310bb
compiler/rustc_hir_analysis/src/astconv/mod.rs
@@ -1674,10 +1674,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
1674
let impl_ty = ocx.normalize(&cause, param_env, impl_ty);
1675
1676
// Check that the self types can be related.
1677
- // FIXME(inherent_associated_types): Should we use `eq` here? Method probing uses
1678
- // `sup` for this situtation, too. What for? To constrain inference variables?
1679
- if ocx.sup(&ObligationCause::dummy(), param_env, impl_ty, self_ty).is_err()
1680
- {
+ if ocx.eq(&ObligationCause::dummy(), param_env, impl_ty, self_ty).is_err() {
1681
return false;
1682
}
1683
0 commit comments