8afc8950e6
#KT-55668 Fixed
12 lines
298 B
Kotlin
Vendored
12 lines
298 B
Kotlin
Vendored
// 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!>in<!> *>> foo(x: T)
|
|
fun bar() {
|
|
val s = ArrayList<ArrayList<Int>>()
|
|
foo(s)
|
|
}
|
|
} |