We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef3a42 commit bfb5144Copy full SHA for bfb5144
chalk-solve/src/coinductive_goal.rs
@@ -28,7 +28,7 @@ impl<I: Interner> IsCoinductive<I> for Goal<I> {
28
GoalData::DomainGoal(DomainGoal::WellFormed(WellFormed::Trait(..))) => true,
29
GoalData::DomainGoal(_) => false,
30
GoalData::Quantified(_, goal) => goal.skip_binders().is_coinductive(db),
31
- GoalData::All(..) => true, // FIXME(ndm)
+ GoalData::All(..) => true,
32
GoalData::Implies(_, goal) => goal.is_coinductive(db),
33
GoalData::Not(_) => false,
34
GoalData::EqGoal(_) => false,
0 commit comments