08bc0a6bd0
^KT-61564
10 lines
175 B
Kotlin
Vendored
10 lines
175 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlinx.cinterop.*
|
|
|
|
fun foo(f: Function1<*, Int>) = f
|
|
|
|
@OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
|
|
fun bar() {
|
|
staticCFunction(::foo)
|
|
}
|