Files
kotlin-fork/idea/resources-en/intentionDescriptions/ExpandBooleanExpressionIntention/after.kt.template
T
Igor Yakovlev ebae6332aa Fix invalid resources placement
For ExpandBooleanExpressionIntention and RedundantAsSequence intention
2020-06-03 14:02:58 +03:00

7 lines
96 B
Plaintext

fun f(b: Boolean): Boolean {
return if (b) {
true
} else {
false
}
}