This works in scalac but not in dotty: ``` scala val x: _ => _ = (x: Int) => 1 val y: (_ <: Int) => _ = (x: Int) => 1 ``` Real-world usage: https://github.com/functional-streams-for-scala/fs2/blob/series/0.9/core/src/main/scala/fs2/Chunk.scala#L321