mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
KTIJ-30739 GitOrigin-RevId: 702e09aa8cf679bc5bde0e3787d65ba411dfb698
15 lines
323 B
Kotlin
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" |