4d9b19da82
#KT-18539 Fixed
11 lines
216 B
Plaintext
Vendored
11 lines
216 B
Plaintext
Vendored
interface I {
|
|
val someVal: String?
|
|
}
|
|
|
|
class A : I {
|
|
override val someVal: String?
|
|
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
|
}
|
|
|
|
// ELEMENT_TEXT: "override val someVal: String?"
|