Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/simple.kt
T

18 lines
210 B
Kotlin
Vendored

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