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

8 lines
152 B
Plaintext
Vendored

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