blob: acc3156136a116bd8d20c963def6d075a9d4299c [file]
// RUN_PIPELINE_TILL: FRONTEND
// FIR_IDENTICAL
// Reproduces exception in TypeResolver.kt: EA-66870
import java.util.ArrayList
abstract class J {
public abstract fun <T : Collection<S>, S : List<<!WRONG_MODIFIER_TARGET!>out<!> *>> foo(x: T)
fun bar() {
val s = ArrayList<ArrayList<Int>>()
foo(s)
}
}
/* GENERATED_FIR_TAGS: classDeclaration, flexibleType, functionDeclaration, javaFunction, localProperty,
propertyDeclaration, starProjection, typeConstraint, typeParameter */