55cfa161c7
When all signatures are inherited from traits, the origin elements lie outside of the class in question
11 lines
135 B
Kotlin
11 lines
135 B
Kotlin
trait T1 {
|
|
fun getX() = 1
|
|
}
|
|
|
|
trait T2 {
|
|
val x: Int
|
|
get() = 1
|
|
}
|
|
|
|
class <!CONFLICTING_JVM_DECLARATIONS!>C<!> : T1, T2 {
|
|
} |