77caa31640
^KT-56209
16 lines
192 B
Kotlin
Vendored
16 lines
192 B
Kotlin
Vendored
actual class B {
|
|
actual fun bar() {}
|
|
fun actBar() {}
|
|
}
|
|
|
|
fun actualAcceptB(b: B) {
|
|
b.bar()
|
|
b.actBar()
|
|
}
|
|
|
|
fun test() {
|
|
acceptA(A())
|
|
acceptB(B())
|
|
actualAcceptB(B())
|
|
}
|