aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/ConstraintHandling.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/ConstraintHandling.scala')
-rw-r--r--src/dotty/tools/dotc/core/ConstraintHandling.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/ConstraintHandling.scala b/src/dotty/tools/dotc/core/ConstraintHandling.scala
index e79dc28b9..28a0c87a2 100644
--- a/src/dotty/tools/dotc/core/ConstraintHandling.scala
+++ b/src/dotty/tools/dotc/core/ConstraintHandling.scala
@@ -236,7 +236,7 @@ trait ConstraintHandling {
*/
protected def addConstraint(param: PolyParam, bound: Type, fromBelow: Boolean): Boolean = {
def description = i"constr $param ${if (fromBelow) ">:" else "<:"} $bound:\n$constraint"
- checkPropagated(s"adding $description")(true)
+ //checkPropagated(s"adding $description")(true) // DEBUG in case following fails
checkPropagated(s"added $description") {
addConstraintInvocations += 1
try bound match {
@@ -250,7 +250,7 @@ trait ConstraintHandling {
}
def checkPropagated(msg: => String)(result: Boolean): Boolean = {
- if (result && addConstraintInvocations == 0) {
+ if (Config.checkConstraintsPropagated && result && addConstraintInvocations == 0) {
frozenConstraint = true
for (p <- constraint.domainParams) {
for (u <- constraint.upper(p))