12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
open class A() {
|
|
open val method : () -> Unit? = {println("hello")}
|
|
}
|
|
|
|
fun some() : A {
|
|
return object : A() {<caret>
|
|
override val method: () -> Unit? = ?
|
|
}
|
|
}
|
|
|
|
// TODO: need better selection and caret
|