Files
kotlin-fork/idea/testData/refactoring/safeDelete/deleteFunction/kotlinFunctionWithJava/usageInOverrideToDelete.kt
T
2016-01-14 13:55:09 +03:00

9 lines
110 B
Kotlin
Vendored

interface T {
fun <caret>foo()
}
class A(val t: T) : T {
override fun foo() {
t.foo()
}
}