Files
kotlin-fork/idea/testData/intentions/removeExplicitSuperQualifier/UnambiguousSuperProperty.kt.after
T
2015-08-27 23:21:22 +03:00

12 lines
149 B
Plaintext
Vendored

open class B {
open val v: Int = 0
}
interface I {
val v: Int
}
class A : B(), I {
override val v: Int
get() = super<caret>.v
}