Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideFunctionProperty.kt.fir.after
T
2021-05-07 00:40:41 +03:00

13 lines
279 B
Plaintext
Vendored

open class A() {
open val method : () -> Unit? = {println("hello")}
}
fun some() : A {
return object : A() {
override val method: () -> kotlin.Unit?
get() = <selection><caret>super.method</selection>
}
}
// TODO: need better selection and caret