Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideFunctionProperty.kt.fir.after
blob: ac0a98b5aaa96f2d6a967dfc64d5cd57fce98388 [
file
] [
log
] [
blame
]
open
class
A
()
{
open val method
:
()
->
Unit
?
=
{
println
(
"hello"
)}
}
fun some
()
:
A
{
return
object
:
A
()
{
override
val method
:
()
->
kotlin
.
Unit
?
get
()
=
<selection><caret>
super
.
method
</
selection
>
}
}
// TODO: need better selection and caret