8f12bf6cc8
^KT-61564
10 lines
108 B
Kotlin
Vendored
10 lines
108 B
Kotlin
Vendored
import kotlinx.cinterop.*
|
|
|
|
class Z {
|
|
fun foo(x: Int) = x
|
|
}
|
|
|
|
fun bar() {
|
|
staticCFunction(Z()::foo)
|
|
}
|