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

8 lines
120 B
Kotlin
Vendored

fun test(b: Boolean): Unit = when (b) {
true -> {
fun a() {}
<caret>Unit
}
else -> {
}
}