Files
kotlin/idea/testData/codeInsight/overrideImplement/emptyClassBodyFunctionMethod.kt
2015-05-13 16:13:13 +02:00

6 lines
84 B
Kotlin
Vendored

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