Files
kotlin-fork/idea/testData/intentions/invertIfCondition/negatedExpression.kt
T
Pradyoth Kukkapalli 5550924dc5 New Intention Action: Invert If Condition
Inverts the conditional expression in an if expression.
2014-05-12 19:48:43 +04:00

9 lines
86 B
Kotlin
Vendored

fun foo(): Boolean {
return true
}
fun main() {
<caret>if (!foo()) {
}
}