Files
kotlin-fork/idea/testData/inspectionsLocal/redundantUnitExpression/atLastAfterFunInIf.kt
T
2020-06-23 10:25:53 +00:00

5 lines
80 B
Kotlin
Vendored

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