Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
odersky committed Nov 9, 2023
1 parent bbf5579 commit ca14723
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 12 deletions.
24 changes: 13 additions & 11 deletions compiler/src/dotty/tools/dotc/core/Types.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4895,16 +4895,16 @@ object Types {
/** Instantiate variable with given type */
def instantiateWith(tp: Type)(using Context): Type = {
assert(tp ne this, i"self instantiation of $origin, constraint = ${ctx.typerState.constraint}")
if !myInst.exists then
typr.println(i"instantiating $this with $tp")
assert(!myInst.exists, i"$origin is already instantiated to $myInst but we attempted to instantiate it to $tp")
typr.println(i"instantiating $this with $tp")

if Config.checkConstraintsSatisfiable then
assert(currentEntry.bounds.contains(tp),
i"$origin is constrained to be $currentEntry but attempted to instantiate it to $tp")
if Config.checkConstraintsSatisfiable then
assert(currentEntry.bounds.contains(tp),
i"$origin is constrained to be $currentEntry but attempted to instantiate it to $tp")

if ((ctx.typerState eq owningState.nn.get.uncheckedNN) && !TypeComparer.subtypeCheckInProgress)
setInst(tp)
ctx.typerState.constraint = ctx.typerState.constraint.replace(origin, tp)
if ((ctx.typerState eq owningState.nn.get.uncheckedNN) && !TypeComparer.subtypeCheckInProgress)
setInst(tp)
ctx.typerState.constraint = ctx.typerState.constraint.replace(origin, tp)
tp
}

Expand Down Expand Up @@ -5811,11 +5811,13 @@ object Types {
protected def derivedLambdaType(tp: LambdaType)(formals: List[tp.PInfo], restpe: Type): Type =
tp.derivedLambdaType(tp.paramNames, formals, restpe)

protected def mapArg(arg: Type, tparam: ParamInfo): Type = arg match
case arg: TypeBounds => this(arg)
case arg => atVariance(variance * tparam.paramVarianceSign)(this(arg))

protected def mapArgs(args: List[Type], tparams: List[ParamInfo]): List[Type] = args match
case arg :: otherArgs if tparams.nonEmpty =>
val arg1 = arg match
case arg: TypeBounds => this(arg)
case arg => atVariance(variance * tparams.head.paramVarianceSign)(this(arg))
val arg1 = mapArg(arg, tparams.head)
val otherArgs1 = mapArgs(otherArgs, tparams.tail)
if ((arg1 eq arg) && (otherArgs1 eq otherArgs)) args
else arg1 :: otherArgs1
Expand Down
10 changes: 9 additions & 1 deletion compiler/src/dotty/tools/dotc/typer/Inferencing.scala
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ object Inferencing {
(using Context) extends TypeAccumulator[Boolean] {

/** Replace toplevel-covariant occurrences (i.e. covariant without double flips)
* of Nothing by fresh type variables.
* of Nothing by fresh type variables. Double-flips are not covered to be
* conservative and save a bit of time on traversals; we could probably
* generalize that if we see use cases.
* For singleton types and references to module classes: try to
* improve the widened type. For module classes, the widened type
* is the intersection of all its non-transparent parent types.
Expand All @@ -191,6 +193,12 @@ object Inferencing {
mapOver(t)
else t

// Don't map Nothing arguments for higher-kinded types; we'd get the wrong kind */
override def mapArg(arg: Type, tparam: ParamInfo): Type =
if tparam.paramInfo.isLambdaSub then arg
else super.mapArg(arg, tparam)
end improve

/** Instantiate type variable with possibly improved computed instance type.
* @return true if variable was instantiated with improved type, which
* in this case should not be instantiated further, false otherwise.
Expand Down
7 changes: 7 additions & 0 deletions tests/neg/foldinf-ill-kinded.check
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- [E007] Type Mismatch Error: tests/neg/foldinf-ill-kinded.scala:9:16 -------------------------------------------------
9 | ys.combine(x) // error
| ^^^^^^^^^^^^^
| Found: Foo[List]
| Required: Foo[Nothing]
|
| longer explanation available when compiling with `-explain`
10 changes: 10 additions & 0 deletions tests/neg/foldinf-ill-kinded.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class Foo[+T[_]]:
def combine[T1[x] >: T[x]](x: T1[Int]): Foo[T1] = new Foo
object Foo:
def empty: Foo[Nothing] = new Foo

object X:
def test(xs: List[List[Int]]): Unit =
xs.foldLeft(Foo.empty)((ys, x) =>
ys.combine(x) // error
)

0 comments on commit ca14723

Please sign in to comment.