Files
kotlin-fork/backend.native/tests/external/codegen/box/package/packageQualifiedMethod.kt
T
2017-03-13 15:31:46 +03:00

7 lines
101 B
Kotlin

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