Files
kotlin-fork/native/swift/sir-compiler-bridge/testData/smoke0/expected.kt
T
Artem Olkov 6cd2a5932a Fix generation of KtBridges, now it is using actual C Function Name
Merge-request: KT-MR-14337
Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
2024-02-13 08:03:33 +00:00

7 lines
237 B
Kotlin
Vendored

import kotlin.native.internal.ExportedBridge
@ExportedBridge("a_b_foo_bridge__TypesOfArguments__int32_t_int64_t__")
public fun a_b_foo_bridge(param1: Int, param2: Long): Int {
val result = a.b.foo(param1, param2)
return result
}