Is `-Xlambdas=class` here to stay for the foreseea...
# compiler
g
Is
-Xlambdas=class
here to stay for the foreseeable future, is it truly relegated to legacy and is expected to be deprecated at some point in the foreseeable future, or is its status still nebulous?
u
Most likely it will stay for a very long time. Also likely the "X" prefix will be removed
k
The help text for
kotlinc -X
ought to say what the default is. It's "class" for Kotlin 1.x and "indy" for 2.x - figured out by experimentation. Also, the sentence "Requires
-jvm-target 1.8
or greater" should be removed as Kotlin doesn't support anything older.
🙏 1