[ObjCExport] Add nullable dependency parameter failing test

KT-66068
This commit is contained in:
eugene.levenetc
2024-02-23 18:17:50 +01:00
committed by Space Team
parent 468efc77dd
commit 87e162e052
5 changed files with 26 additions and 4 deletions
@@ -0,0 +1,3 @@
@class LongIterator, DoubleIterator, IntIterator;
@protocol Iterator;
@@ -0,0 +1,6 @@
class Foo {
fun foo(iterator: DoubleIterator? = null) = Unit
fun foo(): LongIterator? = null
}
var prop: IntIterator? = null