12 lines
188 B
Kotlin
Vendored
12 lines
188 B
Kotlin
Vendored
// "Create local variable 'foo'" "true"
|
|
|
|
fun test(n: Int): Int {
|
|
return when (n) {
|
|
1 -> {
|
|
<caret>foo
|
|
}
|
|
else -> {
|
|
n + 1
|
|
}
|
|
}
|
|
} |