Files
kotlin/idea/testData/quickfix/createFromUsage/createVariable/parameter/beforeInPropertyInitializerInClassObject.kt

9 lines
181 B
Kotlin

// "Create parameter 'foo'" "false"
// ACTION: Create property 'foo'
// ERROR: Unresolved reference: foo
class A {
companion object {
val test: Int = <caret>foo
}
}