Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/varWithDefaultGetterAndSetter.kt.after
T

10 lines
237 B
Plaintext

// ERROR: Property must be initialized or be abstract
class Owner {
}
var Owner.p: Int
get() = <caret><selection>throw UnsupportedOperationException()</selection>
set(value) {
throw UnsupportedOperationException()
}