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

7 lines
136 B
Kotlin
Vendored

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