10 lines
184 B
Kotlin
10 lines
184 B
Kotlin
// "Create local variable 'foo'" "true"
|
|
// ACTION: Create parameter 'foo'
|
|
// ERROR: Variable 'foo' must be initialized
|
|
|
|
package foo
|
|
|
|
fun test(): Int {
|
|
val foo: Int
|
|
return foo
|
|
} |