08bc0a6bd0
^KT-61564
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlinx.cinterop.*
|
|
|
|
class Z {
|
|
fun foo(x: Int) = x
|
|
}
|
|
|
|
@OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
|
|
fun bar() {
|
|
staticCFunction(Z()::foo)
|
|
}
|