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

7 lines
118 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val x = true
if <caret>(x && false) {
throw AssertionError("text")
}
}