Files
kotlin-fork/compiler/testData/codegen/objects/simpleObject.kt
T
2013-01-24 21:12:27 +04:00

8 lines
98 B
Kotlin

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