// TARGET_BACKEND: JVM_OLD interface T1 { fun getX() = 1 } interface T2 { val x: Int get() = 1 } class C : T1, T2 { }