Files
kotlin-fork/native/objcexport-header-generator/testData/headers/anonymousFunctions/Foo.kt
T
eugene.levenetc 8f2fc3d1e2 [ObjCExport] Fix property setter
KT-64953: Required part for enum translation
2024-02-16 16:32:22 +00:00

5 lines
201 B
Kotlin
Vendored

val funProperty: () -> Unit = {}
fun funParam(param: () -> Unit) {}
fun funParamDefault(param: () -> Unit = {}) {}
fun funReturnsFun(): () -> Unit = {}
fun funReturnsNullableFun(): (() -> Unit)? = null