9f67fe2fe3
Rename/remove some obsolete test cases
16 lines
174 B
Kotlin
Vendored
16 lines
174 B
Kotlin
Vendored
// 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"
|
|
}
|