From 1418a2bcb84f9998a6748c740f6655fd35fe9d87 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Thu, 25 May 2023 14:50:41 +0300 Subject: [PATCH] [Test] Temporary update testdata till KT-58829 will be fixed --- .../tests/multiplatform/manyImplMemberNotImplemented.fir.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/testData/diagnostics/tests/multiplatform/manyImplMemberNotImplemented.fir.kt b/compiler/testData/diagnostics/tests/multiplatform/manyImplMemberNotImplemented.fir.kt index 091e3a88eb1..ec06bcde3a5 100644 --- a/compiler/testData/diagnostics/tests/multiplatform/manyImplMemberNotImplemented.fir.kt +++ b/compiler/testData/diagnostics/tests/multiplatform/manyImplMemberNotImplemented.fir.kt @@ -8,14 +8,14 @@ expect open class C1() expect interface I1 -open class A : C1(), I1 +open class A : C1(), I1 open class B : I1, C1() expect abstract class C2() expect interface I2 // TODO: KT-58829 -class C : C2(), I2 +class C : C2(), I2 // MODULE: jvm()()(common) // TARGET_PLATFORM: JVM