wip: test
diff --git a/compiler/testData/multiplatform/funInterfaces/common.kt b/compiler/testData/multiplatform/funInterfaces/common.kt
index c3c5999..3d08a65 100644
--- a/compiler/testData/multiplatform/funInterfaces/common.kt
+++ b/compiler/testData/multiplatform/funInterfaces/common.kt
@@ -10,4 +10,5 @@
 
 fun test() {
     foo { "OK" }
+    foo(KRunnable { "OK "})
 }
\ No newline at end of file
diff --git a/compiler/testData/multiplatform/funInterfaces/js.kt b/compiler/testData/multiplatform/funInterfaces/js.kt
index 6896302..b95746b 100644
--- a/compiler/testData/multiplatform/funInterfaces/js.kt
+++ b/compiler/testData/multiplatform/funInterfaces/js.kt
@@ -10,4 +10,5 @@
 
 fun test() {
     foo { "OK" }
+    foo(KRunnable { "OK " })
 }
\ No newline at end of file
diff --git a/compiler/testData/multiplatform/funInterfaces/jvm.kt b/compiler/testData/multiplatform/funInterfaces/jvm.kt
index 773e3b7..3943376 100644
--- a/compiler/testData/multiplatform/funInterfaces/jvm.kt
+++ b/compiler/testData/multiplatform/funInterfaces/jvm.kt
@@ -10,4 +10,5 @@
 
 fun test() {
     foo { "OK" }
+    foo(KRunnable { "OK " })
 }
\ No newline at end of file