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

5 lines
144 B
Kotlin
Vendored

fun box() = expectThrowableMessage {
val list = listOf("Jane", "John")
assert(list.map { "Doe, $it" }.any { it == "Scott, Michael" })
}