Skip to content

Commit ec82153

Browse files
committed
Address review comments
1 parent b7b4746 commit ec82153

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,8 +1210,9 @@ class Definitions {
12101210
val AbstractFunctionClassPerRun: PerRun[Array[Symbol]] = new PerRun(AbstractFunctionType.map(_.symbol.asClass))
12111211
def AbstractFunctionClass(n: Int)(using Context): Symbol = AbstractFunctionClassPerRun()(using ctx)(n)
12121212

1213-
@tu lazy val caseClassSynthesized: Set[Symbol] = Set(Any_toString, Product_canEqual,
1214-
Product_productArity, Product_productPrefix, Product_productElement, Product_productElementName)
1213+
@tu lazy val caseClassSynthesized: Set[Symbol] = Set(
1214+
Any_hashCode, Any_equals, Any_toString, Product_canEqual, Product_productArity,
1215+
Product_productPrefix, Product_productElement, Product_productElementName)
12151216

12161217
val LazyHolder: PerRun[Map[Symbol, Symbol]] = new PerRun({
12171218
def holderImpl(holderType: String) = requiredClass("scala.runtime." + holderType)

0 commit comments

Comments
 (0)