I am trying the experimental `..<` operator in ...
# intellij
d
I am trying the experimental
..<
operator in IntelliJ and I have already added the opt in via
@OptIn(ExperimentalStdlibApi::class)
but IntelliJ still produces this error:
Copy code
The feature "range until operator" is only available since language version 1.8
how do I resolve it?
e
https://kotlinlang.org/docs/compatibility-modes.html
-language-version 1.8
as it says in the message
d
Thank you!