13 lines
188 B
Kotlin
Vendored
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
|