blob: 5b78c077a6ec05022f9e88eaba19a346b19b17bd [file]
object A {
val x: Int = 610
}
fun box() : String {
return if (A.x != 610) "fail" else "OK"
}