Add wrapped function test
diff --git a/kotlin-native/backend.native/tests/interop/objc/kt53151/main.kt b/kotlin-native/backend.native/tests/interop/objc/kt53151/main.kt
index 8a6345a..17c3997 100644
--- a/kotlin-native/backend.native/tests/interop/objc/kt53151/main.kt
+++ b/kotlin-native/backend.native/tests/interop/objc/kt53151/main.kt
@@ -4,4 +4,5 @@
 fun main() {
     assertEquals(1, getFrameworkInt())
     assertEquals(2, getDefInt())
+    assertEquals(1, getFrameworkIntFromDef())
 }
diff --git a/kotlin-native/backend.native/tests/interop/objc/kt53151/objclib.def b/kotlin-native/backend.native/tests/interop/objc/kt53151/objclib.def
index 9458902..5db926485 100644
--- a/kotlin-native/backend.native/tests/interop/objc/kt53151/objclib.def
+++ b/kotlin-native/backend.native/tests/interop/objc/kt53151/objclib.def
@@ -4,3 +4,7 @@
 static int getDefInt() {
     return 2;
 }
+
+static int getFrameworkIntFromDef() {
+    return getFrameworkInt();
+}