diff --git a/compiler/fir/analysis-tests/testData/resolve/visibility/exposedSupertype.kt b/compiler/fir/analysis-tests/testData/resolve/visibility/exposedSupertype.kt index eb440294fcc..861275d5b04 100644 --- a/compiler/fir/analysis-tests/testData/resolve/visibility/exposedSupertype.kt +++ b/compiler/fir/analysis-tests/testData/resolve/visibility/exposedSupertype.kt @@ -38,9 +38,9 @@ interface E { } -class Test2 : A.APublicI, B.BInner { +class Test2 : A.APublicI, B.BInner() { -} +} class Test3 : C.CPublicI, C { @@ -50,9 +50,9 @@ class Test4 : E, A.AProtectedI { } -class Test5 : C.CPublicI, B.BInner { +class Test5 : C.CPublicI, B.BInner() { -} +} class Test6 : E, C.CPublic {