From 1d5370a56a1a05361afb4277f542fc7eddb69599 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Tue, 24 Dec 2019 17:19:40 +0300 Subject: [PATCH] Fix rationale for test muted in JVM_IR (see KT-35656) --- .../nullCheckOptimization/deterministicNotNullChecks.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/codegen/bytecodeText/nullCheckOptimization/deterministicNotNullChecks.kt b/compiler/testData/codegen/bytecodeText/nullCheckOptimization/deterministicNotNullChecks.kt index 11ed3de8e05..c276005eb0c 100644 --- a/compiler/testData/codegen/bytecodeText/nullCheckOptimization/deterministicNotNullChecks.kt +++ b/compiler/testData/codegen/bytecodeText/nullCheckOptimization/deterministicNotNullChecks.kt @@ -1,7 +1,7 @@ // FILE: test/CallableDescriptor.java // IGNORE_BACKEND: JVM_IR -// ^ TODO decide if we should generate nullability assertions on arguments of 'contains' and other funs with special bridges +// See KT-35656, here JMV_IR correctly generates a nullability assertion for an argument of 'Iterable.contains(T)'. package test;