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() {}