Files
kotlin-fork/idea/testData/intentions/convertIfWithThrowToAssert/assertOverloaded2.kt
T
Valentin Kipyatkov 74cdd39ac9 Renamed test data dirs
2015-05-14 01:00:26 +03:00

10 lines
150 B
Kotlin
Vendored

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