Files
kotlin-fork/compiler/testData/cli/jvm/hmpp/src/c.kt
T
2023-02-17 11:08:50 +00:00

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())
}