mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
156 B
Kotlin
Vendored
9 lines
156 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class A() {
|
|
companion object {
|
|
val value = 10
|
|
}
|
|
}
|
|
|
|
fun box() = if (A.value == 10) "OK" else "Fail ${A.value}"
|