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

6 lines
89 B
Kotlin
Vendored

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