mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
269 B
Plaintext
Vendored
13 lines
269 B
Plaintext
Vendored
// From KT-1648
|
|
interface A {
|
|
val method:() -> Unit?
|
|
}
|
|
|
|
fun some() : A {
|
|
return object : A {
|
|
override val method: () -> Unit?
|
|
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|
|
|
|
// TODO: need better selection and caret |