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

6 lines
93 B
Kotlin
Vendored

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