8a0808b133
#KT-6705 Fixed
13 lines
205 B
Kotlin
13 lines
205 B
Kotlin
// "Create local variable 'foo'" "true"
|
|
|
|
fun test(n: Int): Int {
|
|
return when (n) {
|
|
1 -> {
|
|
val foo = 0
|
|
foo
|
|
}
|
|
else -> {
|
|
n + 1
|
|
}
|
|
}
|
|
} |