blob: 0d439333af0ffb86ed8a1dcae1516621bdde5eba [file] [log] [blame]
open class A() {
open val method : () -> Unit? = {println("hello")}
}
fun some() : A {
return object : A() {
override val method: () -> Unit?
get() = <selection><caret>super.method</selection>
}
}
// TODO: need better selection and caret