Files
kotlin-fork/idea/testData/refactoring/safeDelete/deleteProperty/kotlinProperty/implement2.kt
T

14 lines
176 B
Kotlin
Vendored

interface A {
val foo: String
}
interface Z {
val foo: String
}
class B: A, Z {
override val <caret>foo: String
get() {
return "B"
}
}