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

4 lines
114 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(flag: Boolean) {
<caret>if (!flag) throw IllegalArgumentException() else println(1)
}