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

6 lines
89 B
Kotlin

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