Files
kotlin-fork/backend.native/tests/external/compileKotlinAgainstKotlin/simple.kt
T
2017-03-13 15:31:46 +03:00

16 lines
174 B
Kotlin

// FILE: A.kt
package aaa
fun hello() = 17
// FILE: B.kt
fun box(): String {
val h = aaa.hello()
if (h != 17) {
throw Exception()
}
return "OK"
}