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

10 lines
150 B
Kotlin

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