Files
kotlin/idea/testData/codeInsight/overrideImplement/emptyClassBodyFunctionMethod.kt
Vladimir Rudev 2dd47d6339 KT-1985 Add test case and fix minor bug
Reference compacting must be done before adding body to class.
2012-11-08 23:23:49 +04:00

6 lines
80 B
Kotlin

// From KT-1254
trait T {
fun Foo() : (String) -> Unit
}
class C : <caret>T