convert some GenericArg to Term

This commit is contained in:
lcnr 2025-04-26 01:54:09 +00:00
parent e3e432d4d6
commit 855035b038
27 changed files with 180 additions and 154 deletions

View file

@ -157,7 +157,7 @@ where
ty.visit_with(self)
}
ty::ClauseKind::ConstEvaluatable(ct) => ct.visit_with(self),
ty::ClauseKind::WellFormed(arg) => arg.visit_with(self),
ty::ClauseKind::WellFormed(term) => term.visit_with(self),
}
}