Another question, to try out inline classes, the b...
# eap
r
Another question, to try out inline classes, the blog says I need to set the
-XXLanguage:+InlineClasses
option. How do I do that if I build via gradle? Is there an equivalent to kotlin.experimental.coroutines "enable"?
d
I think something like
Copy code
compileTestKotlin {
    kotlinOptions.freeCompilerArgs = ["-XXLanguage:+InlineClasses"]
}
should work 🙂
👍 2
g
Would be good to have all those flags wrapped to proper Gradle DSL, easy to find, easy to use