Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/varWithDefaultGetterAndSetter.kt.after
T
2015-12-17 11:11:31 +03:00

11 lines
221 B
Plaintext
Vendored

// WITH_RUNTIME
// SKIP_ERRORS_BEFORE
class Owner {
}
var Owner.p: Int
get() = <caret><selection>throw UnsupportedOperationException()</selection>
set(value) {
throw UnsupportedOperationException()
}