7f07890f6a
#KT-13298 Fixed
11 lines
226 B
Plaintext
Vendored
11 lines
226 B
Plaintext
Vendored
interface I {
|
|
val someVal: String?
|
|
}
|
|
|
|
class A : I {
|
|
override val someVal: String?
|
|
get() = <caret><selection>throw UnsupportedOperationException()</selection>
|
|
}
|
|
|
|
// ELEMENT_TEXT: "override val someVal: String?"
|