blob: 93d07fcb0ea56e19a47a0e7290d82ade9626eca8 [file]
// ERROR: Unresolved reference: println
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