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

6 lines
67 B
Kotlin

object A {
fun result() = "OK"
}
fun box(): String = A.result()