I have a spot in my code where I use `continue` fr...
# k2-adopters
m
I have a spot in my code where I use
continue
from inside a
run { }
call. In Kotlin 1.9.24 this compiles fine with
languageVersion = "2.1"
in my build.gradle.kts. After I updated to 2.0.0-RC3 it started failing with the error
The feature "break continue in inline lambdas" is experimental and should be enabled explicitly
, which is the same error I would get previously when not setting the
languageVersion
property. Did something change about how to specify the language version with K2?
d
This feature (KT-1436) is not ready for preview because of some problems in JVM compilation implementation, so it was decided to postpone it
m
Ah, I see. Thanks.
357 Views