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

14 lines
168 B
Kotlin

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