Files
2024-02-07 21:51:17 +00:00

11 lines
222 B
Kotlin
Vendored

// FUNCTION: kotlin.require
fun box() = expectThrowableMessage {
val list = listOf("Jane", "John")
require(
value = list
.map { "Doe, $it" }
.any { it == "Scott, Michael" }
)
}