e409c60780
FL-23390 ^KT-64168 Fixed
11 lines
319 B
Kotlin
Vendored
11 lines
319 B
Kotlin
Vendored
@file:OptIn(ExperimentalObjCName::class)
|
|
|
|
import kotlin.experimental.ExperimentalObjCName
|
|
|
|
@kotlin.native.ObjCName("objcTopLevelFunction", "swiftTopLevelFunction")
|
|
fun someTopLevelFunction() = ""
|
|
|
|
class Foo {
|
|
@kotlin.native.ObjCName("objcMemberFunction", "swiftMemberFunction")
|
|
fun someMemberFunction() = Unit
|
|
} |