9 lines
177 B
Plaintext
Vendored
9 lines
177 B
Plaintext
Vendored
interface A {
|
|
val String.prop : Int
|
|
}
|
|
|
|
class B : A {
|
|
override val String.prop: Int
|
|
get() = <selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|