13 lines
276 B
Plaintext
Vendored
13 lines
276 B
Plaintext
Vendored
// From KT-1648
|
|
interface A {
|
|
val method:() -> Unit?
|
|
}
|
|
|
|
fun some() : A {
|
|
return object : A {
|
|
override val method: () -> kotlin.Unit?
|
|
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|
|
|
|
// TODO: need better selection and caret |