K1: introduce synthetic assignment checker with deprecation for KT-54305

#KT-54305 Fixed
Related to KT-54309
This commit is contained in:
Mikhail Glukhikh
2022-10-05 20:13:49 +02:00
committed by Space Team
parent 7bd512fbb3
commit 80fa765333
11 changed files with 114 additions and 4 deletions
@@ -0,0 +1,11 @@
package
public fun foo(/*0*/ x: JavaClass<in kotlin.CharSequence>, /*1*/ l: kotlin.collections.MutableList<out kotlin.CharSequence>): kotlin.Unit
public interface JavaClass</*0*/ E : kotlin.Any!> {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public abstract fun getFoo(): (kotlin.collections.MutableList<out E!>..kotlin.collections.List<E!>?)
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public abstract fun setFoo(/*0*/ l: (kotlin.collections.MutableList<out E!>..kotlin.collections.List<E!>?)): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}