Files
kotlin-fork/compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/traitImpl/defaultVsNonDefault.kt
T
2023-07-17 16:55:24 +00:00

13 lines
188 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Base1 {
fun getX(): Int
}
interface Base2 {
val x: Int
get() = 1
}
interface <!CONFLICTING_INHERITED_JVM_DECLARATIONS!>Test<!> : Base1, Base2