b51ff799cb
the expected type. ^KT-47741 Fixed.
7 lines
155 B
Kotlin
Vendored
7 lines
155 B
Kotlin
Vendored
// IGNORE_BACKEND: WASM
|
|
|
|
fun box(): String {
|
|
val generateId = (1 .. Int.MAX_VALUE).iterator()::next
|
|
return if (generateId() == 1) "OK" else "FAIL"
|
|
}
|