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