9 lines
131 B
Kotlin
Vendored
9 lines
131 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
fun foo() {
|
|
when (1) {
|
|
else -> {
|
|
<caret>it: Int -> it.hashCode()
|
|
}
|
|
}
|
|
} |