Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/objectMemberValNoReceiver.kt
T

11 lines
188 B
Kotlin
Vendored

// "Create property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
class A {
object B {
fun test(): Int {
return <caret>foo
}
}
}