## Reproduction steps ```scala scala 2.13.8> List(42).flatMap(List(_ + 1)) ^ error: missing parameter type for expanded function ((<x$1: error>) => x$1.$plus(1)) scala 2.13.8> List(42).flatMap(List apply _ + 1) val res1: List[Int] = List(43) ``` ## Problem The [FAQ](https://docs.scala-lang.org/tutorials/FAQ/index.html#why-doesnt-my-function-literal-with-_-in-it-work) claims the function can't be written with placeholder syntax.