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

10 lines
167 B
Plaintext
Vendored

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