Files
kotlin/compiler/testData/codegen/box/classes/classObjectField.kt
2019-11-19 11:00:09 +03:00

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}"