I am trying to investigate value classes, but in i...
# announcements
s
I am trying to investigate value classes, but in intellij, when I try to add @JvmInline, it is unable to find it
TL;DR:
You need to use Kotlin 1.4.30. Specify language version 1.5 to enable the new features:
compileKotlin {
kotlinOptions {
languageVersion = "1.5"
apiVersion = "1.5"
}
}
s
That worked, thank you