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

6 lines
105 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
if <caret>(true) {
throw java.lang.AssertionError("text")
}
}