Files
kotlin/idea/testData/codeInsight/overrideImplement/functionProperty.kt
2012-04-04 11:53:48 +04:00

9 lines
107 B
Kotlin

// From KT-1648
trait A {
val method:() -> Unit?
}
fun some() : A {
return object : A {<caret>}
}