Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/localVariable/afterLocalWithPackageName.kt
T

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
}