We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3efdcf1 + 6f7fd4f commit 9156cbeCopy full SHA for 9156cbe
src/main/scala/scala/async/AnfTransform.scala
@@ -209,7 +209,7 @@ private[async] final case class AnfTransform[C <: Context](c: C) {
209
}
210
211
val core = if (targs.isEmpty) simpleFun else TypeApply(simpleFun, targs)
212
- val newApply = argExprss.foldLeft(core)(Apply(_, _).setSymbol(tree.symbol))
+ val newApply = argExprss.foldLeft(core)(Apply(_, _)).setSymbol(tree.symbol)
213
funStats ++ argStatss.flatten.flatten :+ attachCopy(tree)(newApply)
214
case Block(stats, expr) =>
215
inline.transformToList(stats :+ expr)
0 commit comments