4b9bcce07a
#KT-4431 Fixed
13 lines
238 B
Plaintext
13 lines
238 B
Plaintext
open class A() {
|
|
open val method : () -> Unit? = {println("hello")}
|
|
}
|
|
|
|
fun some() : A {
|
|
return object : A() {<caret>
|
|
override val method: () -> Unit?
|
|
get() = ?
|
|
}
|
|
}
|
|
|
|
// TODO: need better selection and caret
|