Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/accidentalOverrides/delegatedFunctionOverriddenByProperty.kt
T
2014-06-19 22:10:57 +04:00

10 lines
124 B
Kotlin

trait B {
fun getX() = 1
}
trait D {
val x: Int
}
class <!CONFLICTING_JVM_DECLARATIONS!>C(d: D)<!> : D by d, B {
}