From 9a87d25309c552458b103733ca4e1cb93bc4e6c2 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Tue, 28 Aug 2018 16:04:34 +0300 Subject: [PATCH] Fix #1948 --- .../org/jetbrains/kotlin/native/interop/gen/jvm/StubGenerator.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/Interop/StubGenerator/src/main/kotlin/org/jetbrains/kotlin/native/interop/gen/jvm/StubGenerator.kt b/Interop/StubGenerator/src/main/kotlin/org/jetbrains/kotlin/native/interop/gen/jvm/StubGenerator.kt index 870140c60ee..6316d0ad63e 100644 --- a/Interop/StubGenerator/src/main/kotlin/org/jetbrains/kotlin/native/interop/gen/jvm/StubGenerator.kt +++ b/Interop/StubGenerator/src/main/kotlin/org/jetbrains/kotlin/native/interop/gen/jvm/StubGenerator.kt @@ -903,6 +903,7 @@ class StubGenerator( add("WRONG_MODIFIER_CONTAINING_DECLARATION") // For `final val` in interface. add("PARAMETER_NAME_CHANGED_ON_OVERRIDE") add("UNUSED_PARAMETER") // For constructors. + add("MANY_IMPL_MEMBER_NOT_IMPLEMENTED") // Workaround for multiple-inherited properties. add("MANY_INTERFACES_MEMBER_NOT_IMPLEMENTED") // Workaround for multiple-inherited properties. add("EXTENSION_SHADOWED_BY_MEMBER") // For Objective-C categories represented as extensions. add("REDUNDANT_NULLABLE") // This warning appears due to Obj-C typedef nullability incomplete support.