Files
kotlin-fork/idea/testData/intentions/convertIfToAssert/inapplicableMoreThanSingleExpression2.kt
T

8 lines
139 B
Kotlin

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
if <caret>(1 == 0) {
throw AssertionError("text")
val y = 1
}
}