aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/Typer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/typer/Typer.scala')
-rw-r--r--src/dotty/tools/dotc/typer/Typer.scala7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/dotty/tools/dotc/typer/Typer.scala b/src/dotty/tools/dotc/typer/Typer.scala
index 3f7e0b81c..d35356a85 100644
--- a/src/dotty/tools/dotc/typer/Typer.scala
+++ b/src/dotty/tools/dotc/typer/Typer.scala
@@ -1434,12 +1434,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
case Select(New(tpt), nme.CONSTRUCTOR) => tpt.tpe.dealias.argTypesLo
case _ => Nil
}
- if (typeArgs.isEmpty) {
- //for ((pname, pbound) <- poly.paramNames.zip(poly.paramBounds))
- // if (pbound.hi.isSafeLambda)
- // ctx.error(d"cannot infer argument for higher-kinded type parameter $pname", tree.pos)
- typeArgs = constrained(poly, tree)._2
- }
+ if (typeArgs.isEmpty) typeArgs = constrained(poly, tree)._2
convertNewArray(
adaptInterpolated(tree.appliedToTypes(typeArgs), pt, original))
}