From e7864c73519fe106216c8c74d4ce86dff6c8b2e8 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Fri, 17 Jan 2020 11:34:19 +0100 Subject: [PATCH] Fix inlineCallsStaticMethodFromOtherPackage.kt by disabling related language feature This test is not possible for 1.4, where protected calls from public inline functions are prohibited. --- .../box/statics/inlineCallsStaticMethodFromOtherPackage.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/testData/codegen/box/statics/inlineCallsStaticMethodFromOtherPackage.kt b/compiler/testData/codegen/box/statics/inlineCallsStaticMethodFromOtherPackage.kt index 69db230eb43..b503aca2391 100644 --- a/compiler/testData/codegen/box/statics/inlineCallsStaticMethodFromOtherPackage.kt +++ b/compiler/testData/codegen/box/statics/inlineCallsStaticMethodFromOtherPackage.kt @@ -1,3 +1,4 @@ +// !LANGUAGE: -ProhibitProtectedCallFromInline // TARGET_BACKEND: JVM // The non-IR backend attempts to call a non-existent accessor in class Test. // IGNORE_BACKEND: JVM