// TARGET_BACKEND: JVM_OLD interface Base1 { fun getX(): Int } interface Base2 { val x: Int get() = 1 } interface Test : Base1, Base2