From 87d05bcf837c4c5f6c5b3835b4c1a29bc56241f9 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Thu, 6 May 2021 11:55:40 +0300 Subject: [PATCH] Fix spec test data after rebase --- .../testData/diagnostics/notLinked/dfa/neg/1.fir.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/1.fir.kt b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/1.fir.kt index 5e167596e53..1cfd84548ef 100644 --- a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/1.fir.kt +++ b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/1.fir.kt @@ -55,7 +55,7 @@ fun case_4(x: Char?) { fun case_5() { val x: Unit? = null - if (x !== null is Boolean?) x + if (x !== null is Boolean?) x if (x !== null == null) x.equals(null) if (x !== null == null) x.propT if (x !== null == null) x.propAny @@ -236,7 +236,7 @@ fun case_14() { // TESTCASE NUMBER: 15 fun case_15(x: EmptyObject) { - val t = if (x === null is Boolean is Boolean is Boolean) "" else { + val t = if (x === null is Boolean is Boolean is Boolean) "" else { x x.equals(null) x.propT @@ -254,7 +254,7 @@ fun case_15(x: EmptyObject) { fun case_16() { val x: TypealiasNullableNothing = null - if (x != null !is Boolean !is Boolean !is Boolean !is Boolean !is Boolean) { + if (x != null !is Boolean !is Boolean !is Boolean !is Boolean !is Boolean) { x x.java }