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

14 lines
176 B
Kotlin
Vendored

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