From a0e9cc3206b1e65389038e82ea8e4b9f58d69377 Mon Sep 17 00:00:00 2001 From: Nikolay Lunyak Date: Thu, 19 Oct 2023 16:37:55 +0300 Subject: [PATCH] [FIR] Fix new test data after merging a68a2409 --- .../multiplatform/annotationMatching/arrayVsOutArray.fir.kt | 6 +++--- .../multiplatform/annotationMatching/arrayVsVararg.fir.kt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsOutArray.fir.kt b/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsOutArray.fir.kt index 6f2c5fa6480..e919503569c 100644 --- a/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsOutArray.fir.kt +++ b/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsOutArray.fir.kt @@ -3,7 +3,7 @@ expect annotation class A(val x: Array) -@A("abc", "foo", "bar") +@A("abc", "foo", "bar") fun test() {} // MODULE: m1-jvm()()(m1-common) @@ -11,10 +11,10 @@ fun test() {} actual annotation class A(val x: Array) -@A("abc", "foo", "bar") +@A("abc", "foo", "bar") fun test2() {} annotation class B(val x: Array) -@B("abc", "foo", "bar") +@B("abc", "foo", "bar") fun test3() {} diff --git a/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsVararg.fir.kt b/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsVararg.fir.kt index e72ef19eb28..c167d61b453 100644 --- a/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsVararg.fir.kt +++ b/compiler/testData/diagnostics/tests/multiplatform/annotationMatching/arrayVsVararg.fir.kt @@ -11,5 +11,5 @@ fun test() {} actual annotation class A(val x: Array) -@A("abc", "foo", "bar") +@A("abc", "foo", "bar") fun test2() {}