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