ac7ee9d3f5
This means the subject expression and the common data flow info of all entries' conditions
7 lines
87 B
Kotlin
7 lines
87 B
Kotlin
fun foo(x: Number) {
|
|
when (x as Int) {
|
|
else -> x : Int
|
|
}
|
|
x : Int
|
|
}
|