15 lines
184 B
Kotlin
Vendored
15 lines
184 B
Kotlin
Vendored
package foo
|
|
|
|
import library.sample.*
|
|
|
|
var ok = "FAIL"
|
|
|
|
fun main(args: Array<String>) {
|
|
val x = ClassA().value
|
|
if (x == 100) {
|
|
ok = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String = ok
|