diff --git a/kotlin-native/backend.native/tests/interop/objc/smoke.kt b/kotlin-native/backend.native/tests/interop/objc/smoke.kt index aac1156ba30..4bad1609993 100644 --- a/kotlin-native/backend.native/tests/interop/objc/smoke.kt +++ b/kotlin-native/backend.native/tests/interop/objc/smoke.kt @@ -68,10 +68,8 @@ fun run() { // hashCode (directly): // hash() returns value of NSUInteger type. val hash = if (sizeOf() == 4L) { - // `typedef unsigned int NSInteger` on watchOS. foo.hash().toInt() } else { - // `typedef unsigned long NSUInteger` on iOS, macOS, tvOS. foo.hash().let { it.toInt() xor (it shr 32).toInt() } } if (foo.hashCode() == hash) {