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

13 lines
210 B
Plaintext
Vendored

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