File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dotty/tools/dotc/core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2494,11 +2494,11 @@ object Types {
2494
2494
// ----- Skolem types -----------------------------------------------
2495
2495
2496
2496
/** A skolem type reference with underlying type `binder`. */
2497
- abstract case class SkolemType (info : Type ) extends CachedProxyType with ValueType with SingletonType {
2497
+ abstract case class SkolemType (info : Type ) extends UncachedProxyType with ValueType with SingletonType {
2498
2498
override def underlying (implicit ctx : Context ) = info
2499
2499
def derivedSkolemType (info : Type )(implicit ctx : Context ) =
2500
2500
if (info eq this .info) this else SkolemType (info)
2501
- override def computeHash : Int = identityHash
2501
+ override def hashCode : Int = identityHash
2502
2502
override def equals (that : Any ) = this eq that.asInstanceOf [AnyRef ]
2503
2503
override def toString = s " Skolem( $info) "
2504
2504
}
You can’t perform that action at this time.
0 commit comments