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

6 lines
93 B
Kotlin

// WITH_RUNTIME
fun foo() {
if <caret>(true) {
throw AssertionError(null)
}
}