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

11 lines
151 B
Plaintext

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