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

12 lines
274 B
Plaintext
Vendored

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