9 lines
174 B
Kotlin
9 lines
174 B
Kotlin
// "Create local variable 'foo'" "true"
|
|
// ACTION: Create parameter 'foo'
|
|
// ERROR: Variable 'foo' must be initialized
|
|
|
|
package foo
|
|
|
|
fun test(): Int {
|
|
return <caret>foo
|
|
} |