## Compiler version 3.1.3 ## Minimized code ```Scala Seq(1, 2, 3).map(s"$_ ") ``` ## Output ```scala error in interpolated string: identifier, `this' or block expected ``` ## Expectation Successful compilation `Seq(1, 2, 3).map(s"${_} ")` yields different error: `Unbound placeholder parameter; incorrect use of _`