Anyway to have cinterop change the name of a function when building? I'm bringing in OCHamcrest and cinterop fails with
Copy code
common/build/classes/kotlin/ios/main/common-cinterop-ochamcrest.klib-build/kotlin/org/ochamcrest/ochamcrest.kt:127:5: error: expecting function name or receiver type
fun is(value: Any?): Any {
^
The problem is the name of the function is a Kotlin keyword,
is
. I verified that manually changing the name in the objc header allowed cinterop to build.