Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/accidentalOverrides/delegatedFunctionOverriddenByProperty.kt
T
2015-05-12 19:43:17 +02:00

10 lines
132 B
Kotlin
Vendored

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