Files
kotlin-fork/idea/testData/intentions/invertIfCondition/booleanLiteral.kt.after
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

6 lines
39 B
Plaintext
Vendored

fun main() {
if (false) {
}
}