Files
kotlin-fork/idea/testData/safeDelete/deleteProperty/kotlinProperty/implement5.kt
T
2013-07-29 19:24:13 +04:00

10 lines
132 B
Kotlin

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