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

15 lines
193 B
Kotlin
Vendored

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