compiler/testData/codegen/box/objects/simpleObject.kt (6 lines of code) (raw):

object A { val x: Int = 610 } fun box() : String { return if (A.x != 610) "fail" else "OK" }