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

10 lines
136 B
Kotlin
Vendored

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