13 lines
233 B
Kotlin
13 lines
233 B
Kotlin
// "Create local variable 'foo'" "true"
|
|
// ERROR: Variable 'foo' must be initialized
|
|
|
|
fun test(n: Int): Int {
|
|
return when (n) {
|
|
1 -> {
|
|
<caret>foo
|
|
}
|
|
else -> {
|
|
n + 1
|
|
}
|
|
}
|
|
} |