Skip to content

Commit

Permalink
fix #829 hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjitjhala committed Oct 1, 2024
1 parent c4f5b83 commit 69e6946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/flux-middle/src/rty/projections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl<'genv, 'tcx, 'cx> Normalizer<'genv, 'tcx, 'cx> {
// e.g. given `i32 : Trait1<Assoc=T1>` we
// - `normalize_projection_ty` on `<i32 as Trait1>::Assoc` to get `bool`
// - unify `T1` with `bool`
for p in projection_preds.iter() {
for p in projection_preds {
let obligation = &p.projection_ty;
let (_, ty) = self.normalize_projection_ty(obligation)?;
subst.tys(&p.term, &ty);
Expand Down

0 comments on commit 69e6946

Please sign in to comment.