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

12 lines
223 B
Plaintext
Vendored

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