Files
kotlin-fork/idea/testData/safeDelete/deleteProperty/javaPropertyWithKotlin/middleJava1.kt
T
2015-05-13 16:13:13 +02:00

10 lines
143 B
Kotlin
Vendored

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