Files
kotlin-fork/idea/testData/intentions/convertAssertToIf/booleanConditionWithVariables.kt.after
T
2014-04-15 19:26:39 -04:00

8 lines
128 B
Plaintext

// WITH_RUNTIME
fun foo() {
val x = true
val y = false
if (!(x || y)) {
throw AssertionError("text")
}
}