Update incompatibleClassScopesWithImplTypeAlias test

Caused by: KT-62590

Now we have the pipeline:
1. Match declarations
2. Run checkers on matched declarations

Since the constructors with empty parameters match we only report
"checking incompatibility" about their incompatible visibility

Before the pipeline introduction, we were running matching and checking
checks together
This commit is contained in:
Nikita Bobko
2023-10-26 09:04:27 +02:00
committed by teamcity
parent facdbfdc11
commit b7198c35b9
@@ -11,8 +11,6 @@ compiler/testData/multiplatform/regressions/incompatibleClassScopesWithImplTypeA
The following declaration is incompatible because visibility is different:
constructor(): Writer
The following declaration is incompatible because number of value parameters is different:
constructor(p0: Any!): Writer
actual typealias Writer = java.io.Writer
^