Files
kotlin-fork/idea/testData/inspectionsLocal/replaceGuardClauseWithFunctionCall/require/hasElse3.kt
T
2019-07-22 20:49:20 +03:00

11 lines
217 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(flag: Boolean, i: Int) {
<caret>if (!flag) {
throw IllegalArgumentException()
} else if (i == 0) {
println(0)
} else {
println(1)
println(2)
}
}