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

13 lines
171 B
Kotlin
Vendored

// FIR_IDENTICAL
interface T1 {
fun getX() = 1
}
interface T2 {
val x: Int
get() = 1
}
class <!CONFLICTING_INHERITED_JVM_DECLARATIONS!>C<!> : T1, T2 {
}