// SKIP_WHEN_OUT_OF_CONTENT_ROOT // WITH_STDLIB // MODULE: m1-common // FILE: common.kt expect open class Base() { open fun existingMethodInBase(param: T) } open class Transitive : Base() expect open class Foo : Transitive { fun existingMethod() val existingParam: Int } // MODULE: m2-jvm()()(m1-common) // FILE: jvm.kt actual open class Base { actual open fun existingMethodInBase(param: T) {} } actual open class Foo : Transitive() { actual fun existingMethod() {} actual val existingParam: Int = 904 override fun existingMethodInBase(param: String) {} // override from super }