From ecdf97c6b78d20a8be8cf6cdd7f99689fc7671b9 Mon Sep 17 00:00:00 2001 From: Vladimir Sukharev Date: Thu, 22 Feb 2024 12:52:01 +0100 Subject: [PATCH] [K/N][Tests] Adjust test smoke.kt to improved fake override engine ^KT-61323 --- native/native.tests/testData/interop/objc/smoke.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/native.tests/testData/interop/objc/smoke.kt b/native/native.tests/testData/interop/objc/smoke.kt index 953fe0f2458..6b77d1f3a2b 100644 --- a/native/native.tests/testData/interop/objc/smoke.kt +++ b/native/native.tests/testData/interop/objc/smoke.kt @@ -119,7 +119,7 @@ class Bar : Foo() { } } -@Suppress("CONFLICTING_OBJC_OVERLOADS") +@Suppress("CONFLICTING_OBJC_OVERLOADS", "CONFLICTING_OVERLOADS") class MutablePairImpl(first: Int, second: Int) : NSObject(), MutablePairProtocol { private var elements = intArrayOf(first, second)