Files
kotlin-fork/compiler/testData/ir/irText/firProblems/thisInEnumConstructor.kt
T
2023-03-22 15:18:17 +00:00

8 lines
149 B
Kotlin
Vendored

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