20e36438e2
Move those tests which do not require neither stdlib nor reflect
9 lines
124 B
Kotlin
Vendored
9 lines
124 B
Kotlin
Vendored
val p: Int? = 1;
|
|
val z: Int? = 2;
|
|
|
|
fun box(): String {
|
|
if (!(p!! < z!!)) {
|
|
return "fail"
|
|
}
|
|
return "OK"
|
|
} |