We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13fb051 + 4d1d66b commit 990cf5bCopy full SHA for 990cf5b
compiler/rustc_middle/src/ty/sty.rs
@@ -787,7 +787,7 @@ impl<'tcx> ExistentialPredicate<'tcx> {
787
tcx.def_path_hash(a.item_def_id).cmp(&tcx.def_path_hash(b.item_def_id))
788
}
789
(AutoTrait(ref a), AutoTrait(ref b)) => {
790
- tcx.trait_def(*a).def_path_hash.cmp(&tcx.trait_def(*b).def_path_hash)
+ tcx.def_path_hash(*a).cmp(&tcx.def_path_hash(*b))
791
792
(Trait(_), _) => Ordering::Less,
793
(Projection(_), Trait(_)) => Ordering::Greater,
0 commit comments