Skip to content

Commit 2d1b896

Browse files
committed
Fix merge breakage
1 parent b89462f commit 2d1b896

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/dotty/tools/dotc/core/Types.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4175,12 +4175,12 @@ object Types {
41754175
myGround > 0
41764176

41774177
private[Types] def cachedIsStable(using Context): Boolean =
4178-
if myisStableRunId != ctx.runId then
4178+
if myIsStableRunId != ctx.runId then
41794179
val res: Boolean = computeIsStable
41804180
// We don't cache if the type is provisional because `Type#isStable`
41814181
// calls `Type#stripTypeVar` which might return different results later.
41824182
if !isProvisional then
4183-
myisStableRunId = ctx.runId
4183+
myIsStableRunId = ctx.runId
41844184
myIsStable = res
41854185
res
41864186
else

0 commit comments

Comments
 (0)