Files
kotlin-fork/idea/testData/intentions/convertIfWithThrowToAssert/booleanCondition.kt.after
T

5 lines
83 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
val x = true
assert(!(x && false)) { "text" }
}