0dace65f05
^KT-63547
30 lines
636 B
Kotlin
Vendored
30 lines
636 B
Kotlin
Vendored
// SKIP_WHEN_OUT_OF_CONTENT_ROOT
|
|
// WITH_STDLIB
|
|
// MODULE: m1-common
|
|
// FILE: common.kt
|
|
|
|
expect open class Base<T>() {
|
|
open fun existingMethodInBase(param: T)
|
|
}
|
|
|
|
open class Transitive : Base<String>()
|
|
|
|
expect open class Foo : Transitive {
|
|
fun existingMethod()
|
|
val existingParam: Int
|
|
}
|
|
|
|
// MODULE: m2-jvm()()(m1-common)
|
|
// FILE: jvm.kt
|
|
|
|
actual open class Base<T> {
|
|
actual open fun existingMethodInBase(param: T) {}
|
|
}
|
|
|
|
actual open class Foo : Transitive() {
|
|
actual fun existingMethod() {}
|
|
actual val existingParam: Int = 904
|
|
|
|
override fun existi<caret>ngMethodInBase(param: String) {} // override from super
|
|
}
|