6 lines
110 B
Kotlin
Vendored
6 lines
110 B
Kotlin
Vendored
// FUNCTION: kotlin.check
|
|
|
|
fun box() = expectThrowableMessage {
|
|
check(1 == 2) { "the world is broken" }
|
|
}
|