blob: f23073c6e89718013215d01d52dba6db4cbe24de [file] [log] [blame]
class A() {
companion object {
val value = 10
}
}
fun box() = if (A.value == 10) "OK" else "Fail ${A.value}"