Files
kotlin-fork/compiler/testData/ir/irText/firProblems/thisInEnumConstructor.kt
T
2024-02-16 10:19:38 +00:00

7 lines
112 B
Kotlin
Vendored

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