Files
2024-07-29 10:03:19 +00:00

15 lines
323 B
Kotlin

// FIR_IDENTICAL
open class A() {
open val method : () -> Unit? = {println("hello")}
}
fun some() : A {
return object : A() {<caret>}
}
// TODO: need better selection and caret
// MEMBER: "method: () -> Unit?"
// MEMBER: "equals(other: Any?): Boolean"
// MEMBER: "hashCode(): Int"
// MEMBER: "toString(): String"