From a8077aebb0ca56c071eb500c88ba6b464c64df5e Mon Sep 17 00:00:00 2001 From: "Denis.Zharkov" Date: Tue, 17 Aug 2021 15:32:06 +0300 Subject: [PATCH] FIR: Ignore suspicious test on StrictJavaNullabilityAssertions ^KT-48302 Open --- .../inFunctionWithExpressionBodyWithJavaGeneric.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/testData/codegen/box/javaInterop/notNullAssertions/enhancedNullability/inFunctionWithExpressionBodyWithJavaGeneric.kt b/compiler/testData/codegen/box/javaInterop/notNullAssertions/enhancedNullability/inFunctionWithExpressionBodyWithJavaGeneric.kt index c9ff5fc84d7..49f37624f48 100644 --- a/compiler/testData/codegen/box/javaInterop/notNullAssertions/enhancedNullability/inFunctionWithExpressionBodyWithJavaGeneric.kt +++ b/compiler/testData/codegen/box/javaInterop/notNullAssertions/enhancedNullability/inFunctionWithExpressionBodyWithJavaGeneric.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +StrictJavaNullabilityAssertions -ProhibitUsingNullableTypeParameterAgainstNotNullAnnotated // TARGET_BACKEND: JVM +// IGNORE_BACKEND_FIR: JVM_IR // See KT-8135 // We could generate runtime assertion on call site for 'generic()' below.