Skip to content

Commit 292ff4b

Browse files
committed
narrow and expand the FIXME comment
1 parent f8e7c3d commit 292ff4b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

chalk-solve/src/clauses/env_elaborator.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,12 @@ impl<'db, 'set> EnvElaborator<'db, 'set> {
6161
Ty::Projection(projection_ty) => {
6262
self.visit_projection_ty(projection_ty);
6363
}
64-
// FIXME #203
65-
Ty::Dyn(_) | Ty::Opaque(_) | Ty::ForAll(_) | Ty::BoundVar(_) | Ty::InferenceVar(_) => (),
64+
65+
// FIXME(#203) -- We haven't fully figured out the implied
66+
// bounds story around object and impl trait types.
67+
Ty::Dyn(_) | Ty::Opaque(_) => (),
68+
69+
Ty::ForAll(_) | Ty::BoundVar(_) | Ty::InferenceVar(_) => (),
6670
}
6771
self.round.extend(clauses);
6872
}

0 commit comments

Comments
 (0)