Files
kotlin/compiler/testData/codegen/box/package/packageQualifiedMethod.kt
2014-01-14 18:06:50 +04:00

7 lines
101 B
Kotlin

package Foo
fun bar() = 610
fun box(): String {
return if (Foo.bar() == 610) "OK" else "fail"
}