Files
kotlin-fork/idea/testData/inspectionsLocal/redundantUnitExpression/atLastAfterUnitFunctionCall.kt
T
2018-01-30 10:03:36 +03:00

8 lines
91 B
Kotlin
Vendored

fun test(b: Boolean): Unit = if (b) {
unit()
<caret>Unit
} else {
}
fun unit() {
}