From 383e814d824b86ddcf926d94c943999275adcfbe Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 24 Jun 2022 09:36:39 +0300 Subject: [PATCH] Update FIR spec test data NONE_APPLICABLE instead of UNRESOLVED_REFERENCE_WRONG_RECEIVER presumably because of the introduction of another `contains` extension overload --- .../linked/expressions/when-expression/p-6/neg/3.2.fir.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/tests-spec/testData/diagnostics/linked/expressions/when-expression/p-6/neg/3.2.fir.kt b/compiler/tests-spec/testData/diagnostics/linked/expressions/when-expression/p-6/neg/3.2.fir.kt index d036f6f79e6..eac297ce352 100644 --- a/compiler/tests-spec/testData/diagnostics/linked/expressions/when-expression/p-6/neg/3.2.fir.kt +++ b/compiler/tests-spec/testData/diagnostics/linked/expressions/when-expression/p-6/neg/3.2.fir.kt @@ -4,9 +4,9 @@ // TESTCASE NUMBER: 1 fun case_1(value_1: Int, value_2: EmptyClass, value_3: Int, value_4: Any): String { when (value_1) { - in value_2 -> return "" - in value_3 -> return "" - in value_4 -> return "" + in value_2 -> return "" + in value_3 -> return "" + in value_4 -> return "" } return ""