blob: 2a74fe2aba476488acc9c1384a0d6fc16861c3a6 [file] [log] [blame]
// 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"
}