[K/N][Tests] Add test for KT-64276

^KT-64276
This commit is contained in:
Vladimir Sukharev
2023-12-19 12:05:48 +01:00
committed by Space Team
parent 85882413db
commit 26b626c8cf
3 changed files with 44 additions and 0 deletions
+11
View File
@@ -186,6 +186,17 @@ open class Derived2 : Derived() {
override fun foo() {}
}
interface I1 {
@ObjCName("foo1")
fun foo()
}
interface DerivedI1 : I1 {
override fun foo()
}
abstract class KT64276 : Base(), DerivedI1 {}
private const val exact = false
private const val objcName = "nonLiteralArgsObjC"