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

11 lines
143 B
Kotlin
Vendored

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