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

17 lines
237 B
Kotlin
Vendored

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