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

9 lines
137 B
Kotlin
Vendored

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