7 lines
74 B
Kotlin
Vendored
7 lines
74 B
Kotlin
Vendored
actual class My {
|
|
actual fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
My().foo()
|
|
} |