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

9 lines
160 B
Kotlin

// IS_APPLICABLE: false
// WITH_RUNTIME
// MIN_JAVA_VERSION: 1.7
fun foo() {
if <caret>(1 == 0) {
throw AssertionError("text", Exception())
}
}