e3ce799993
#KT-33972 Fixed
18 lines
258 B
Plaintext
Vendored
18 lines
258 B
Plaintext
Vendored
//
|
|
actual open class A {
|
|
actual open fun String.c(a: Int) {}
|
|
}
|
|
|
|
open class B : A() {
|
|
override fun String.c(a: Int) {}
|
|
}
|
|
|
|
open class D : B() {
|
|
override fun String.c(a: Int) {}
|
|
}
|
|
|
|
fun test(a: Int, b: String) {
|
|
with(A()) {
|
|
b.c(a)
|
|
}
|
|
} |