Files
kotlin-fork/idea/testData/intentions/convertAssertToIf/booleanConditionWithVariables.kt
T

6 lines
101 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val x = true
val y = false
<caret>assert(x || y) { "text" }
}