[ObjCExport] Add failing member function signature order test

KT-66066
This commit is contained in:
eugene.levenetc
2024-02-23 18:02:08 +01:00
committed by Space Team
parent e6705e9db2
commit 468efc77dd
4 changed files with 51 additions and 1 deletions
@@ -0,0 +1,4 @@
class Foo {
fun foo(b: String, a: String) = Unit
fun foo(a: String, b: Int) = Unit
}