Files
kotlin-fork/idea/testData/refactoring/safeDelete/deleteProperty/javaPropertyWithKotlin/middleJava1.kt
T

10 lines
143 B
Kotlin
Vendored

interface B {
public val foo: String
}
class D: B {
public override val foo: String
get() {
return "D"
}
}