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

7 lines
145 B
Kotlin
Vendored

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