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

12 lines
152 B
Kotlin
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><B>.v
}