We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What will this print in Kotlin 1.3.X and then in Kotlin 1.4.X ?
enum class EnumWithConst(val theValue: Int) { One(0), Two(EnumWithConst.constValue), Three(2 * EnumWithConst.constValue); companion object { const val constValue: Int = 100 } } enum class EnumWithoutConst(val theValue: Int) { One(0), Two(EnumWithoutConst.simpleValue), Three(2 * EnumWithoutConst.simpleValue); companion object { val simpleValue: Int = 100 } } fun main() { println(EnumWithConst.values().joinToString { "$it => ${it.theValue}" }) println("##############################") println(EnumWithoutConst.values().joinToString { "$it => ${it.theValue}" }) }
The related playground : https://pl.kotl.in/NjuR92qlu
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What will this print in Kotlin 1.3.X and then in Kotlin 1.4.X ?
The related playground : https://pl.kotl.in/NjuR92qlu
The text was updated successfully, but these errors were encountered: