b3943f5ab6
^KT-49887 Fixed
13 lines
231 B
Kotlin
Vendored
13 lines
231 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
fun test(): Int = buildList {
|
|
add(1)
|
|
add(2)
|
|
|
|
val number = removeLastOrNull() ?: throw Exception()
|
|
}.singleOrNull() ?: throw Exception()
|
|
|
|
fun box(): String {
|
|
return if (test() == 1) "OK" else "NOK"
|
|
}
|