11 lines
206 B
Plaintext
Vendored
11 lines
206 B
Plaintext
Vendored
interface A {
|
|
var Int.foo : Double
|
|
}
|
|
|
|
class B : A {
|
|
override var Int.foo: Double
|
|
get() = <selection><caret>throw UnsupportedOperationException()</selection>
|
|
set(value) {
|
|
}
|
|
}
|