e57d34dd9e
- [JS IR] Unmute fixed tests - [IrText] Update testdata - [WASM] Temporary turn wasm test off - [FirText] Temporary turn fit text tests off - [JVM IR] Turn off klib jvm test - [IR] Add new test
14 lines
209 B
Kotlin
Vendored
14 lines
209 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: ANY
|
|
enum class X {
|
|
|
|
B {
|
|
val value2 = "OK"
|
|
override val value = { value2 }
|
|
};
|
|
|
|
abstract val value: () -> String
|
|
}
|
|
|
|
fun box(): String {
|
|
return X.B.value()
|
|
} |