11 lines
196 B
Kotlin
Vendored
11 lines
196 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class My {
|
|
companion object {
|
|
private val my: String = "O"
|
|
get() = field + "K"
|
|
|
|
fun getValue() = my
|
|
}
|
|
}
|
|
|
|
fun box() = My.getValue() |