diff --git a/Analysis/src/ConstraintSolver.cpp b/Analysis/src/ConstraintSolver.cpp index ae02c60a..d7ac2c5d 100644 --- a/Analysis/src/ConstraintSolver.cpp +++ b/Analysis/src/ConstraintSolver.cpp @@ -1422,8 +1422,13 @@ bool ConstraintSolver::tryDispatch(const PrimitiveTypeConstraint& c, NotNull 1) { - block(c.freeType, constraint); - return false; + // canMutate here is used to check if the freeType is owned by the same constraint + if (canMutate(c.freeType, constraint) == false) + { + // if it isn't owned by the same constraint, then we can block it + block(c.freeType, constraint); + return false; + } } TypeId bindTo = c.primitiveType;