Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/valWithDefaultGetter.kt.after
T
2019-11-13 08:37:25 +09:00

8 lines
142 B
Plaintext
Vendored

// WITH_RUNTIME
// SKIP_ERRORS_BEFORE
class Owner {
}
val Owner.p: Int
get() = <caret><selection>TODO("Not yet implemented")</selection>