blob: 0cd1d1920435fcf4e02aec512fe11928bc4bf178 [file]
fun box() = expectThrowableMessage {
val text: String? = "Hello"
assert(
text
== null ||
(
text.length == 5 &&
text.toLowerCase() == text
)
)
}