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