Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/emptyClassBodyFunctionMethod.kt
T
2021-05-07 00:40:41 +03:00

7 lines
101 B
Kotlin
Vendored

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