Files
kotlin-fork/compiler/testData/ir/irText/firProblems/thisInEnumConstructor.kt
T
2022-11-22 10:01:16 +00:00

6 lines
95 B
Kotlin
Vendored

// WITH_STDLIB
enum class EE(val myName: String = this.toString().lowercase()) {
ENTRY;
}