af24ce5e03
#KT-39772 Fixed
8 lines
120 B
Kotlin
Vendored
8 lines
120 B
Kotlin
Vendored
fun test(b: Boolean): Unit = when (b) {
|
|
true -> {
|
|
fun a() {}
|
|
<caret>Unit
|
|
}
|
|
else -> {
|
|
}
|
|
} |