Files
kotlin-fork/plugins/power-assert/testData/codegen/boolean/BooleanMixWithAndFirst.kt
T
2024-02-07 21:51:17 +00:00

5 lines
148 B
Kotlin
Vendored

fun box() = expectThrowableMessage {
val text: String? = "Hello"
assert(text != null && (text.length == 1 || text.toLowerCase() == text))
}