Open
Description
After updating Scala from 2.13.13
to 2.13.14
I got compilation error: "possible missing interpolator: detected an interpolated expression".
Doesn't work:
val world = "World"
assert(s"Hello, $world!".contains("Hell"))
Works:
val world = "World"
val assertion = s"Hello, $world!".contains("Hell")
assert(assertion)
Metadata
Assignees
Labels
No labels