6 lines
98 B
Kotlin
6 lines
98 B
Kotlin
// WITH_RUNTIME
|
|
fun foo() {
|
|
val x = true
|
|
val y = false
|
|
<caret>assert(x || y, "text")
|
|
} |