From 73fb851864dab84aaca5e2b323f5400b976b6a4f Mon Sep 17 00:00:00 2001 From: Ivan Kochurkin Date: Thu, 13 May 2021 20:53:49 +0300 Subject: [PATCH] [FIR] Commit incorrect test data that should be restored after fix of https://youtrack.jetbrains.com/issue/KT-41794 --- .../tests/platformTypes/rawTypes/arrays.fir.kt | 14 +++++++------- .../platformTypes/rawTypes/rawSupertype.fir.kt | 2 +- .../tests/platformTypes/rawTypes/simple.fir.kt | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/arrays.fir.kt b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/arrays.fir.kt index e3fa9a435b9..adf22ababc0 100644 --- a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/arrays.fir.kt +++ b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/arrays.fir.kt @@ -30,15 +30,15 @@ fun main() { raw.charSequences = arrayOf() raw.charSequences = arrayOf() - raw.maps = arrayOf>() - raw.maps = arrayOf>() - raw.maps = arrayOf>() + raw.maps = arrayOf>() + raw.maps = arrayOf>() + raw.maps = arrayOf>() - raw.arraysOfLists = arrayOf>>() - raw.arraysOfLists = arrayOf>() - raw.arraysOfLists = arrayOf>>() + raw.arraysOfLists = arrayOf>>() + raw.arraysOfLists = arrayOf>() + raw.arraysOfLists = arrayOf>>() raw.arraysOfAny = arrayOf>>() - raw.erasedLists = arrayOf>() + raw.erasedLists = arrayOf>() } diff --git a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/rawSupertype.fir.kt b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/rawSupertype.fir.kt index 7d17053aec8..410c9154f04 100644 --- a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/rawSupertype.fir.kt +++ b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/rawSupertype.fir.kt @@ -31,6 +31,6 @@ fun main() { val rawA = rawADerived.bar() - rawA.x = strList + rawA.x = strList rawA.foo("", strList) } diff --git a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/simple.fir.kt b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/simple.fir.kt index 4e3dc5c1856..749691e9561 100644 --- a/compiler/testData/diagnostics/tests/platformTypes/rawTypes/simple.fir.kt +++ b/compiler/testData/diagnostics/tests/platformTypes/rawTypes/simple.fir.kt @@ -28,12 +28,12 @@ val strMap: Map = null!! fun main() { val rawA = Test.rawAField rawA.x = strList - rawA.y = strMap + rawA.y = strMap rawA.foo("", strList, strList) val barResult = rawA.bar() - barResult.x = strList - barResult.y = strMap + barResult.x = strList + barResult.y = strMap barResult.foo("", strList, null) }