blob: fb96ecd22ce11e29cbe01ef3bd8a8bee723de1ce [file]
interface A {
var Int.foo : Double
}
class B : A {
override var Int.foo: Double
get() = <selection><caret>TODO("Not yet implemented")</selection>
set(value) {}
}