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

6 lines
95 B
Kotlin

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