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

8 lines
130 B
Kotlin

// WITH_RUNTIME
fun foo() {
if <caret>(true) {
throw AssertionError("text")
}
}
fun assert(x: Boolean, y: Any) {}