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

10 lines
143 B
Plaintext
Vendored

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