File tree 1 file changed +2
-2
lines changed
src/dotty/tools/dotc/core 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2506,11 +2506,11 @@ object Types {
2506
2506
// ----- Skolem types -----------------------------------------------
2507
2507
2508
2508
/** A skolem type reference with underlying type `binder`. */
2509
- abstract case class SkolemType (info : Type ) extends CachedProxyType with ValueType with SingletonType {
2509
+ abstract case class SkolemType (info : Type ) extends UncachedProxyType with ValueType with SingletonType {
2510
2510
override def underlying (implicit ctx : Context ) = info
2511
2511
def derivedSkolemType (info : Type )(implicit ctx : Context ) =
2512
2512
if (info eq this .info) this else SkolemType (info)
2513
- override def computeHash : Int = identityHash
2513
+ override def hashCode : Int = identityHash
2514
2514
override def equals (that : Any ) = this eq that.asInstanceOf [AnyRef ]
2515
2515
override def toString = s " Skolem( $info) "
2516
2516
}
You can’t perform that action at this time.
0 commit comments